我对 php 中的函数 strstr 有一些问题。
$text=file_get_contents("text.txt");
echo $text.'<br><br>';
$xml = simplexml_load_file('listmv.xml');
foreach($xml->item as $item)
{
$quoi="sangs rgyas";
if (strstr($text,$quoi)) { echo 'yes';}
}
strstr 返回“是”,
$text=file_get_contents("text.txt");
echo $text.'<br><br>';
$xml = simplexml_load_file('listmv.xml');
foreach($xml->item as $item)
{
$quoi=$item->tib;
if (strstr($text,$quoi)) { echo 'yes';}
}
不起作用。这是怎么回事?
XML 文件:-
<list>
<item>
<tib>sangs rgyas</tib>
<ref>1524</ref>
</item>
<item>
<tib>rgya gar skad du</tib>
<ref>1522</ref>
</item>
<item>
<tib>shes pa dang</tib>
<ref>1523</ref>
</item>
<item>
<tib>'tsho ba dang</tib>
<ref>1525</ref>
</item>
</list>
猛跑小猪
子衿沉夜