可以接受网址或字符串的函数?

| 我有一个我希望能够接受html字符串或string0ѭ可以使用的资源的函数。 我的基本想法是
function something($source){
  $local = true;
  foreach(array(\'http://\', \'https://\') as $protocol)
    if(stripos($source, $protocol) === 0)
      $local = false;
  //more stuff
}
哪个有效 但是我很好奇,有没有更好的方法可以做到这一点呢?如果没有,“ 0”可以处理其他什么协议     
已邀请:
        这是正常的方式。 支持的协议和包装     

要回复问题请先登录注册