我使用codeigniter.I想要在網站內容中搜索幾個單詞,那是否存在它的單詞在它的網站或沒有?如果網站返回中存在一個單詞(所有單詞)爲FALSE。我嘗試了下面的代碼,但得到錯誤。如何做到這一點?在網站內容中搜索php
DEMO:http://codepad.viper-7.com/rFiL01
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'stackoverflow.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$contents = curl_exec($ch);
curl_close($ch);
$link[] = array("Questions", "Favorite", "myfoodho");
foreach($link as $val){
stristr($contents,$val); // Line 148
//if(){
// return true;
//}else{
// return false;
//}
}
?>
錯誤:
A PHP Error was encountered
Severity: Warning
Message: stristr() [function.stristr]: needle is not a string or an integer
Filename: views/exchange.php
Line Number: 148