ネパール.com 検索

" size="30" />
(.*)@", $contents, $matches); //echo "$file
"; $title = strip_tags($matches[1]); $linkpath = preg_replace("@^$dirpath@", "",$file); $data[] = "$title"; } } else if ($s_mode == "OR"){ // OR 検索なのでひとつでも引っかかればOK foreach($s_words as $s_word){ $s_word_preg = preg_quote($s_word); if(preg_match("/$s_word_preg/i", $contents)){ preg_match("@(.*)@", $contents, $matches); //echo "$file
"; $title = strip_tags($matches[1]); $linkpath = preg_replace("@^$dirpath@", "",$file); $data[] = "$title"; break; } } } } $s_word_html = strip_tags(implode(" $s_mode ", $s_words)); $cnt = count($data); echo "$s_word_html の検索結果 ($cnt 件)
"; echo "
"; if($data){ foreach($data as $r ){ echo $r . "

"; } } else { echo "検索キーワードにマッチするページはありません。"; } } else { echo "検索キーワードを入力してください。"; } ?>