PHP文本數(shù)據(jù)庫(kù)的搜索方法
創(chuàng)新互聯(lián)公司從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元漳州做網(wǎng)站,已為上家服務(wù),為漳州各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792
searchstr=("/".preg_quote($searchstr)."/");
//$searchstr是查找的關(guān)鍵字
$records=file($file);//獲取所有的記錄數(shù)
//$file是查找的數(shù)據(jù)文件
$search_reocrds=preg_grep
($searchstr,
$records);//開始查找記錄
//$search_reocrds為查找到的記錄數(shù)
unset($records);
if($search_records){
//開始顯示記錄,寫下你自己的處理程序********************
while
(list
($key,
$val)
=
each
(
$search_records))
{
echo
"$val
";
}
//****************************************************
}
使用表單不需要在網(wǎng)址中傳值
form
action="update.php"
method="post"
name="form1"
textarea
name="end_check_content8"
wrap="physical"/textarea
input
type="hidden"
name="dia_id"
value="?=$dia_id1?"
input
type="hidden"
name="cur_page"
value="?=$cur_page?"
input
type="submit"
name="ok"
value="合格"
input
type="submit"
name="no"
value="不合格"
/form
update.php
?php
echo
'textarea的值為'.$_post['end_check_content8'].'
';
echo
'dia_id的值為'.$_post['dia_id1'].'
';
echo
'cur_page的值為'.$_post['cur_page'].'
';
if($_post['ok'])
echo
'合格'.'
';
else
echo
'不合格'.'
';
?
文本:
優(yōu)點(diǎn):讀取速度快。不需要數(shù)據(jù)庫(kù)。
缺點(diǎn):
檢索極不方便。幾乎不可能。更別提復(fù)雜的檢索了。
排序不方便。
單個(gè)文本數(shù)據(jù)過(guò)大時(shí)一次讀入會(huì)占用大量?jī)?nèi)存
所以不能存儲(chǔ)大量數(shù)據(jù)
數(shù)據(jù)安全性等于0。
數(shù)據(jù)庫(kù)的優(yōu)點(diǎn)就是 文本的缺點(diǎn)。