Home  >  Article  >  Backend Development  >  Alternatives when php does not support mysql

Alternatives when php does not support mysql

WBOY
WBOYOriginal
2016-08-08 09:33:56979browse

Generally, personal free homepage spaces do not provide MySQL support, and even if they do, it is very demanding, so it is important to find a good alternative!
PHP's file processing function is very powerful, so you can use file access instead!
(You must know that when there is no database, everything is organized by files! Haha!). Each data item is separated by special symbols. I use "||" to facilitate reading a single record through the explode() function!
In fact, the idea of ​​database can still be used here! Like a database index!
So you must make an index file first! (This is not correct)
Let’s take the guestbook as an example:
The main files are:
index.database
Its structure is as follows:
Name of the person who left the message | Each line is stored and can be easily read through PHP's fgets() function, or the file() function to read each line into an array
In order to prevent multiple people from writing data at the same time, locking is also required (also implemented using files)
The following is the written code
//The following parameters must be passed in:
//Name of the messager $name
//The gender of the messager $sex
//Message time $time
//Message content storage location $savePosite
$indexFile="index.database";
$indexFileLock=$indexFile."Lock";
$message=$name."||".$sex."||".$time."||".$savePosite."||feiy||";//This is the record to be written
while(file_exists($indexFileLock)) $temp++; //Check whether it is locked
fclose(fopen($indexFileLock,"w")); //If not, enter and lock to avoid the same access conflict
$fp=fopen($indexFile,"a");
fputs($message,strlen($message));
fclose($fp);
unlink($indexFileLock);//Unlock
?>
Read code
$indexFile="index.database";
$indexFileLock=$indexFile."Lock";
while(file_exists($indexFileLock)) $temp++; //Check whether it is locked
fclose(fopen($indexFileLock,"w")); //If not, enter and lock to avoid the same access conflict
$ary=file($indexFile);
unlink($indexfileLock);//Unlock
for($i=0;$i $tempAry=explode("||",$ary[$i]);
echo("name:".$tempAry[0]);
echo("sex:".$tempAry[1]);
echo("sex:".$tempAry[2]);
echo("savePosite:",$tempAry[3]);//The message content can be read from this address
}
?>

Through the above, you can easily solve common web applications, such as chat rooms, BBS forums, bookmarks, etc.
If that prawn has a better solution, please enlighten me! Thanks!






The above introduces the alternatives when PHP does not support mysql, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn