从php中的用户输入中删除http,https和双斜杠

功能所需要的函数为

1
2
3
4
5
6
7
8
9
function remove_http($url) {
   $disallowed array('http://''https://');
   foreach($disallowed as $d) {
      if(strpos($url$d) === 0) {
         return str_replace($d''$url);
      }
   }
   return $url;
}<span class="copyBtn" data-clipboard-target="pre.activePre ol">复制</span>

在destoon的模板中调用时用

{remove_http($url)}

每日壁纸

留下评论

您的邮箱地址不会被公开。 必填项已用 * 标注