我正在尝试构建一个在网页中搜索特定单词的脚本。每当我运行脚本时,它都会返回该单词存在,即使它不存在。
这是脚本:
<?php
$db->query("select id from ".prefix." book where book='$book'");
$id=$db->f("id");
$text = file_get_contents('http://www.somesite.com/item?keywords=$id');
echo (stristr ($text, 'Eminescu')) ? 'Online' : 'Offline';
?>