首頁  >  文章  >  後端開發  >  PHP文字資料庫的搜尋方法_PHP教程

PHP文字資料庫的搜尋方法_PHP教程

WBOY
WBOY原創
2016-07-21 16:10:13820瀏覽

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
"; } //**************************************** ************ }

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/314287.htmlTechArticlePHP文字資料庫的搜尋方法searchstr=("/".preg_quote($searchstr)."/"); //$searchstr是尋找的關鍵字$records=file($file);//取得所有的記錄數//$file是尋找的資料...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn