我有一个函数,我希望能够接受一个html字符串,或file_get_contents()
可以使用的资源。
我的基本想法是
function something($source){
$local = true;
foreach(array('http://', 'https://') as $protocol)
if(stripos($source, $protocol) === 0)
$local = false;
//more stuff
}
哪个有效,
但我很好奇,有没有更好的方法来做到这一点,如果没有,其他协议可以file_get_contents()
处理