


Implementation method of using text files as database in PHP_PHP tutorial
Based on my experience, I think the following file structure is optimal:
---------------------------------- ---------------------------------------
File extension: .php
die('ACCESS DENIED!');?>
email=ask4more@13.net & nickname=redfox & realname=A Ding & url=http://NetNote.oso.com.cn & ...
...
----------------------------------------- --------------------------------
Maybe everyone can see that it uses .php as the extension, and The first line of the file is , which effectively prevents illegal access to the data file. The format of the second line of the file is: Variable name 1 = value 1 & Variable name 2 = value 2 &...
Proposing all variables is very simple, just use the function parse_str();
For example:
$theline="email=ask4more@13.net&nickname=redfox&realname=A Ding&url=http://NetNote.oso.com.cn";
parse_str($theline);// Separate the variables $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";
?>
Operating results:
I am redfox,my real name is A Ding
welcome to visit my website: http://NetNote.oso.com.cn
email me at:ask4more@13.net
Therefore, this article agrees that the data text structure is:
-------- --------------------------------
Variable name 1 = value 1 & Variable name 2 = value 2 &...
File extension: .php
-------------------------- --------------------------
The real data starts from the second line. Well, using such a file structure, you can easily implement GuestBook, BBS, and even community data processing:) My homepage "Netnote" http://netnote.oso.com.cn is implemented in this way. .
In order to facilitate the majority of netizens, I have compiled several functions, and the necessary explanations will be made below. Of course you can modify and implement it as you like, but you must ensure the integrity of the functionality. Please save the following code as textfun.inc (of course, other names are the same), and add a line of statement at the beginning of the file you want to use, you You can use the function I compiled for you.
There is a db object and a function p2row(); ---
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);//Modify the file mode, also available under 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;"); //To obtain environment variables
eval("$ therow="$therow";");
$fp=fopen($this->$dbfile,"a");
fputs($fp,"$therow");
fclose( $fp);
}
function readall($f){
if(file_exists($f)){
$this->$dbfile=$f;
$rows= file($f);
for($i=1;$i
}
Return $temp;
}
}
//Read all data lines in reverse order
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--; $i
}
return $temp;
}
}
function close(){
$this=$nothing;
}
}
//Format the paragraph text into one line of text for convenience Storage
function p2row($t){
$t=nl2br(stripslashes(htmlspecialchars($t)));
for($i=0;$i
if(ord($c)==10) $c=" ";
$tempstr.=$c;
}
return $tempstr;
}
?>
—————————————————————————————————————————————————————— It is our customized data object for this article, including six methods: createdb(), opendb(), insertline(), readall().revread(), close();
db->createdb( string filename)
Usage example:
include("textfun.inc");
$mydb=new db;
$mydb->createdb("UserInfo.php");
?>
This method creates a file UserInfo.php, the first line is
db->opendb(string filename)
Usage example:
include("textfun.inc");
$mydb=new db;
$mydb->opendb("UserInfo.php");
?>
This method "opens" the data file UserInfo.php in append mode. If this file does not exist, it will be created.
Therefore, this method can replace the createdb() method. (But don’t delete the createdb() function in class db{ } :P)
db->insertline(string VarString)
Usage example:
include( "textfun.inc");
$theline="email=ask4more@13.net&nickname=redfox&realname=A Ding&url=http://NetNote.oso.com.cn";
parse_str($theline); //Construct environment variables
$mydb=new db;
$mydb->opendb("UserInfo.php");
$mydb->insertline("nickname|realname|email|url" );
?>
db->insertline() can separate the corresponding environment variables from a string in the form of "nickname|realname|email|url" and store them in the form agreed in this article document. When passing in the parameters of insertline(), you must use "|" to connect the environment variable names into a string. There is no limit to the number, but do not add "$" in front. Well, it must be in the form of "nickname|realname" |email|url" such a string :~)
array db->readall(string filename)
Usage example:
include("textfun.inc");
$mydb=new db;
$allrec=$mydb->readall("UserInfo.php");
?>
readall() method returns the first row except the first row ( die An array of all data except ('ACCESS DENIED!');?>), with each row corresponding to an element of the array.
array db->revread(string filename)
Usage example:
include("textfun.inc");
$mydb=new db;
$ allrec=$mydb->revread("UserInfo.php");
?>
revread() method reads in reverse order except the first line ( die('ACCESS DENIED!'); ?>), returns an array. This is especially useful when we are writing guest books etc.
void db->close()
Close the db object.
Okay, now we will use the db object to compile the simplest guestbook.
---------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下调试通过!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
