用文本作資料處理

來源:互聯網
上載者:User
關鍵字 用文本作資料處理
作者:redfox 郵件:ask4more@163.net 
首頁:http://netnote.oso.com.cn

  相信大家在網上申請的免費php空間,如果是初級使用者,一般都是沒得MySQL可供使用,那麼我們解決資料處理的方法之一就是用文字檔了。但是用什麼方法才可以最快最方便的處理文本資料呢?
  按我的經驗,本人認為,以下列檔案結構為最優:
----------------------------------------------------------------------
副檔名:.php

email=ask4more@13.net & nickname=redfox & realname=阿鼎 & url=http://NetNote.oso.com.cn & ...
...
----------------------------------------------------------------------
  也許大家都看出來了,以.php做副檔名,並且檔案的第一行是,這樣就有效阻止了對資料檔案的非法訪問。檔案的第二行的格式都是: 變數名1=值1 & 變數名2=值2 & ...
  提出所有的變數很簡單,就是用函數 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
";
echo "welcome to visit my website:$url
";
echo "email me at:$email";
?>
運行結果:
I am redfox,my real name is 阿鼎
welcome to visit my website:http://NetNote.oso.com.cn
email me at:ask4more@13.net 

  因此,本文約定,資料文本結構為:
----------------------------------------

變數名1=值1 & 變數名2=值2 & ...

副檔名: .php
----------------------------------------

  真正的資料從第二行開始。好了,用這樣的檔案結構就可以很容易的實現GuestBook,BBS,甚至是社區的資料處理了:)我的首頁“網路便簽” http://netnote.oso.com.cn ,就是這樣實現的。
  為了方便廣大網友,我編了幾個函數,下面將作出必要的解釋。當然你可以隨便的修改和挎貝,但你必須保證功能的完整性。請將下面的代碼存為 textfun.inc (當然取其它的名字也是一樣的),在你要使用的檔案的開始部分加入一行語句,你就可以使用我為你編的函數了。
下面一共一個db對象,一個函數p2row();

-------------textfun.inc----------------
class db{
 var $dbfile;
 function createdb($dbName){
  $f=$dbName;
  $this->$dbfile=$f;
  $headInfo="\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;"); //為了取得環境變數
  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    $temp[]=$rows[$i];
   }
   return $temp;
  }
 }
 //以倒序的方式讀入所有的資料行
 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    $temp[]=$rows[$i];
   }
   return $temp;
  }
 }

 function close(){
 $this=$nothing;
 }
}

//把段落文字格式設定化為一行文本,便於儲存
function p2row($t){ 
 $t=nl2br(stripslashes(htmlspecialchars($t)));
 for($i=0;$i  $c=substr($t,$i,1);
  if(ord($c)==10) $c=" ";
   $tempstr.=$c;
  }
  return $tempstr;
 }
?>
----------------------------------

  db是我們自訂的本文資料對象,包括六個方法:createdb(),opendb(),insertline(),readall().revread(),close();

db->createdb(string filename)
用法例:  include("textfun.inc");
  $mydb=new db;
      $mydb->createdb("UserInfo.php");  
  ?>
這個方法建立了一個檔案UserInfo.php,首行是

db->opendb(string filename)
用法例:  include("textfun.inc");
  $mydb=new db;
      $mydb->opendb("UserInfo.php");
  ?>
這個方法以追加模式“開啟”了資料檔案UserInfo.php,如果這個檔案不存在,則被建立。
  因此,這個方法可以取代createdb()方法。(但千萬別刪了class db{ }裡面的createdb()函數哦: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);//構造環境變數
  $mydb=new db;
      $mydb->opendb("UserInfo.php");
  $mydb->insertline("nickname|realname|email|url");
  ?>
db->insertline()可以將形如"nickname|realname|email|url"的字串,分離出相應的環境變數,並以本文約定的形式存入檔案。 傳入insertline()的參數,一定要用“|”把環境變數名連成字串,個數不限,但千萬別在前面加"$"哦,嗯,就是要形如"nickname|realname|email|url"這樣的字串 :~)

array db->readall(string filename)
用法例:  include("textfun.inc");
  $mydb=new db;
  $allrec=$mydb->readall("UserInfo.php");
  ?>
readall()方法返回除首行()外所有資料的數組,每行對應於數組的一個元素。

array db->revread(string filename)
用法例:  include("textfun.inc");
  $mydb=new db;
  $allrec=$mydb->revread("UserInfo.php");
  ?>
revread()方法以倒序方式讀入除首行()外所有資料,返回數組。這對我們在編留言本等時候尤為有用。

void db->close()
    關閉db對象。

好了,我們現在就用db對象編一個最簡單的留言本。
---------guestbook.php------------
我的留言本



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");
 
 //以下讀出所有的資料
 $allrecs=$mydb->revread("msg.php");
 while(list($key,$theline)=each($allrecs)){
  parse_str($theline);
  ?>
  ">

  URL:">

  Message:


   }
 $mydb->close();
}
?>
-----------------------------
好了,雖然這個留言本不是很美觀,但主要是為了舉例說明db對象的用法~:)
本文在WIN98+PWS+PHP4下調試通過!
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.