PHP文字資料庫的搜尋方法searchstr=("/".preg_quote($searchstr)."/"); //$searchstr是尋找的關鍵字$records=file($file);//取得所有的記錄數/ /$file是尋找的資料檔$search_reocrds=preg_grep ($searchstr, $records);//開始尋找記錄//$search_reocrds為查找到的記錄數unset($records); if($search_records){ //開始顯示記錄,寫下你自己的處理程序******************** while (list ($key, $val) = each ( $search_records)) { echo " $val
"; } //**************************************** ************ }