用文本作數(shù)據(jù)處理
發(fā)表時(shí)間:2024-01-24 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]作者:redfox 郵件:ask4more@163.net 主頁:http://netnote.oso.com.cn 相信大家在網(wǎng)上申請(qǐng)的免費(fèi)PHP空間,如果是初級(jí)用戶,一般都是沒得MySQL可供使用,那么我們解決數(shù)據(jù)處理的方法之一就是用文本文件了。但是用什么方法才可以最快最方便的處...
作者:redfox 郵件:ask4more@163.net
主頁:http://netnote.oso.com.cn
相信大家在網(wǎng)上申請(qǐng)的免費(fèi)PHP空間,如果是初級(jí)用戶,一般都是沒得MySQL可供使用,那么我們解決數(shù)據(jù)處理的方法之一就是用文本文件了。但是用什么方法才可以最快最方便的處理文本數(shù)據(jù)呢?
按我的經(jīng)驗(yàn),本人認(rèn)為,以下列文件結(jié)構(gòu)為最優(yōu):
----------------------------------------------------------------------
文件擴(kuò)展名:.php
<? die('ACCESS DENIED!');?>
email=ask4more@13.net & nickname=redfox & realname=阿鼎 & url=http://NetNote.oso.com.cn & ...
...
----------------------------------------------------------------------
也許大家都看出來了,以.php做擴(kuò)展名,并且文件的第一行是<? die('ACCESS DENIED!');?>,這樣就有效的阻止了對(duì)數(shù)據(jù)文件的非法訪問。文件的第二行的格式都是: 變量名1=值1 & 變量名2=值2 & ...
提出所有的變量很簡單,就是用函數(shù) parse_str();
例如:
<?
$theline="email=ask4more@13.net&nickname=redfox&realname=阿鼎&url=http://NetNote.oso.com.cn";
parse_str($theline);//分離出變量$email,$nickname,$realname,$url
echo "I am $nickname,my real name is $realname<br>";
echo "welcome to visit my website:$url<br>";
echo "email me at:$email";
?>
運(yùn)行結(jié)果:
I am redfox,my real name is 阿鼎
welcome to visit my website:http://NetNote.oso.com.cn
email me at:ask4more@13.net
因此,本文約定,數(shù)據(jù)文本結(jié)構(gòu)為:
----------------------------------------
<? die('ACCESS DENIED!');?>
變量名1=值1 & 變量名2=值2 & ...
文件擴(kuò)展名: .php
----------------------------------------
真正的數(shù)據(jù)從第二行開始。好了,用這樣的文件結(jié)構(gòu)就可以很容易的實(shí)現(xiàn)GuestBook,BBS,甚至是社區(qū)的數(shù)據(jù)處理了:)我的主頁“網(wǎng)絡(luò)便簽” http://netnote.oso.com.cn ,就是這樣實(shí)現(xiàn)的。
為了方便廣大網(wǎng)友,我編了幾個(gè)函數(shù),下面將作出必要的解釋。當(dāng)然你可以隨便的修改和挎貝,但你必須保證功能的完整性。請(qǐng)將下面的代碼存為 textfun.inc (當(dāng)然取其它的名字也是一樣的),在你要使用的文件的開始部分加入一行語句<?include("textfun.inc");?>,你就可以使用我為你編的函數(shù)了。
下面一共一個(gè)db對(duì)象,一個(gè)函數(shù)p2row();
-------------textfun.inc----------------
<?
class db{
var $dbfile;
function createdb($dbName){
$f=$dbName;
$this->$dbfile=$f;
$headInfo="<?die('ACCESS DENIED!');?>\n";
$fp=fopen($f,"w");
fputs($fp,$headInfo);
fclose($fp);
chmod($f,0777);//修改文件的模式,在Unix下也可用
return(1);
}
function opendb($f){
$this->$dbfile=$f;
if(file_exists($f)){
return true;
}else{
$this->createdb($f);
}
}
function insertline($info){
$fields=explode(" ",$info);
while(list($key,$val)=each($fields)){
$therow.="$val=\$".$val."&";
$var1.="\$".$val.",";
}
$var1.='$tail';
eval("global $var1;"); //為了取得環(huán)境變量
eval("\$therow=\"$therow\";");
$fp=fopen($this->$dbfile,"a");
fputs($fp,"$therow\n");
fclose($fp);
}
function readall($f){
if(file_exists($f)){
$this->$dbfile=$f;
$rows=file($f);
for($i=1;$i<count($rows);$i++){
$temp[]=$rows[$i];
}
return $temp;
}
}
//以倒序的方式讀入所有的數(shù)據(jù)行
function revread($f){
if(file_exists($f)){
$this->$dbfile=$f;
$rows=file($f);
$d=count($rows);
$j=$d-1;
for($i=0;$i<$d;$i++){
if($i<$j){
$temprow=$rows[$i];
$rows[$i]=$rows[$j];
$rows[$j]=$temprow;
$j--;
}
}
for($i=0;$i<count($rows)-1;$i++){ //去掉首行
$temp[]=$rows[$i];
}
return $temp;
}
}
function close(){
$this=$nothing;
}
}
//把段落文本格式化為一行文本,便于存儲(chǔ)
function p2row($t){
$t=nl2br(stripslashes(htmlspecialchars($t)));
for($i=0;$i<strlen($t);$i++){
$c=substr($t,$i,1);
if(ord($c)==10) $c=" ";
$tempstr.=$c;
}
return $tempstr;
}
?>
----------------------------------
db是我們自定義的本文數(shù)據(jù)對(duì)象,包括六個(gè)方法:createdb(),opendb(),insertline(),readall().revread(),close();
db->createdb(string filename)
用法例:<?
include("textfun.inc");
$mydb=new db;
$mydb->createdb("UserInfo.php");
?>
這個(gè)方法創(chuàng)建了一個(gè)文件UserInfo.php,首行是<? die('ACCESS DENIED!');?>
db->opendb(string filename)
用法例:<?
include("textfun.inc");
$mydb=new db;
$mydb->opendb("UserInfo.php");
?>
這個(gè)方法以追加模式“打開”了數(shù)據(jù)文件UserInfo.php,如果這個(gè)文件不存在,則被創(chuàng)建。
因此,這個(gè)方法可以取代createdb()方法。(但千萬別刪了class db{ }里面的createdb()函數(shù)哦:P)
db->insertline(string VarString)
用法例:<?
include("textfun.inc");
$theline="email=ask4more@13.net&nickname=redfox&realname=阿鼎&url=http://NetNote.oso.com.cn";
parse_str($theline);//構(gòu)造環(huán)境變量
$mydb=new db;
$mydb->opendb("UserInfo.php");
$mydb->insertline("nickname realname email url");
?>
db->insertline()可以將形如"nickname realname email url"的字符串,分離出相應(yīng)的環(huán)境變量,并以本文約定的形式存入文件。 傳入insertline()的參數(shù),一定要用“ ”把環(huán)境變量名連成字符串,個(gè)數(shù)不限,但千萬別在前面加"$"哦,嗯,就是要形如"nickname realname email url"這樣的字符串 :~)
array db->readall(string filename)
用法例:<?
include("textfun.inc");
$mydb=new db;
$allrec=$mydb->readall("UserInfo.php");
?>
readall()方法返回除首行(<? die('ACCESS DENIED!');?>)外所有數(shù)據(jù)的數(shù)組,每行對(duì)應(yīng)于數(shù)組的一個(gè)元素。
array db->revread(string filename)
用法例:<?
include("textfun.inc");
$mydb=new db;
$allrec=$mydb->revread("UserInfo.php");
?>
revread()方法以倒序方式讀入除首行(<? die('ACCESS DENIED!');?>)外所有數(shù)據(jù),返回?cái)?shù)組。這對(duì)我們?cè)诰幜粞员镜葧r(shí)候尤為有用。
void db->close()
關(guān)閉db對(duì)象。
好了,我們現(xiàn)在就用db對(duì)象編一個(gè)最簡單的留言本。
---------guestbook.php------------
我的留言本<p>
<form name=form1 action=<? echo $PHP_SELF;?>>
NickName:<input type=text name=nickname><br>
E-Mail:<input type=text name=email><br>
Homepage:<input type=text name=url value="http://"><br>
Message:<textarea name=message cols=30 rows=12></textarea><p>
<input type=submit name=Submit value=提交>
</form>
<?
include("textfun.inc");
if($Submit){
$thetime=date("Y-m-d h:m:s A");
$message=p2row($message);
$mydb=new db;
$mydb->opendb("msg.php");
$mydb->insertline("nickname email url message thetime");
//以下讀出所有的數(shù)據(jù)
$allrecs=$mydb->revread("msg.php");
while(list($key,$theline)=each($allrecs)){
parse_str($theline);
?>
<a href="mailto:<?echo $email;?>"><?echo $nickname;?></a><?echo $thetime;?><br>
URL:<a href="<?echo $url;?>"><?echo $url;?></a><br>
Message:<br><?echo stripslashes($message);?><hr noshade size=1>
<?
}
$mydb->close();
}
?>
-----------------------------
好了,雖然這個(gè)留言本不是很美觀,但主要是為了舉例說明db對(duì)象的用法~:)
本文在WIN98+PWS+PHP4下調(diào)試通過!