コードニッターを使用しています。サイト内容で何単語か検索したいのですが、サイト内に存在するかどうか?そのサイト内に単語(すべての単語)が存在する場合は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;
//}
}
?>
エラー:あなたは別の配列を含む配列を作成している
$link[] = array("Questions", "Favorite", "myfoodho");
を書く
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