0
我有一個函數,我希望能夠接受一個html字符串或file_get_contents()
可以工作的資源。接受url或字符串的函數?
我的基本想法是
function something($source){
$local = true;
foreach(array('http://', 'https://') as $protocol)
if(stripos($source, $protocol) === 0)
$local = false;
//more stuff
}
它的工作原理, 不過我很好奇,是有這樣做的更好的方法,如果沒有,還有什麼其他協議可以file_get_contents()
處理