功能所需要的函数为
function remove_http($url) { $disallowed = array('http://', 'https://'); foreach($disallowed as $d) { if(strpos($url, $d) === 0) { return str_replace($d, '', $url); } } return $url; }
在destoon的模板中调用时用
{remove_http($url)}
功能所需要的函数为
function remove_http($url) { $disallowed = array('http://', 'https://'); foreach($disallowed as $d) { if(strpos($url, $d) === 0) { return str_replace($d, '', $url); } } return $url; }
在destoon的模板中调用时用
{remove_http($url)}