0

ここにある W3C Live Ajax Search を使用しています。彼らのコードは、「タイトル」という 1 つの要素のみを検索します。ユーザーのクエリを取得して、「タイトル」や「URL」などの複数の要素を検索したいと考えています。

<?php
$xmlDoc=new DOMDocument();
$xmlDoc->load("live.xml");

$x=$xmlDoc->getElementsByTagName('link');

//get the q parameter from URL
$q=$_GET["q"];

//lookup all links from the xml file if length of q>0
if (strlen($q)>0)
{
$hint="";
for($i=0; $i<($x->length); $i++)
  {
  $d=$x->item($i)->getElementsByTagName('title');
  $z=$x->item($i)->getElementsByTagName('url');
  if ($d->item(0)->nodeType==1)
    {
    //find a link matching the search text
    if (stristr($d->item(0)->childNodes->item(0)->nodeValue,$q) !=false)   
      {
      if ($hint=="")
        {
        $hint=
        $z->item(0)->childNodes->item(0)->nodeValue . "<br />" . 
        $d->item(0)->childNodes->item(0)->nodeValue;
        }
      else
        {
        $hint=$hint . "<br /><br />" .
        $z->item(0)->childNodes->item(0)->nodeValue . "<br />" .  
        $d->item(0)->childNodes->item(0)->nodeValue;
        }
      }
    }
  }
}

// Set output to "no suggestion" if no hint were found
// or to the correct values
if ($hint=="")
  {
  $response="no suggestion";
  }
else
  {
  $response=$hint;
  }

//output the response
echo $response;

?> 

誰かがそれを機能させる方法の例を教えてもらえますか? 私が理解していることから、stristr は干し草の山を 1 つしか検索せず、配列を使用できないので、別の方法はありますか? 前もって感謝します!

4

1 に答える 1

0

さて、私は方法を考え出しました:

if ( (stristr($d->item(0)->childNodes->item(0)->nodeValue,$q) !=false) || 
     (stristr($z->item(0)->childNodes->item(0)->nodeValue,$q) !=false) ) 

これが最適な方法であるとは思えないので、誰かがより良い解決策を持っている場合は、自由に追加してください。

于 2012-12-18T22:33:15.220 に答える