


PHP implements the five basic operations of data display, adding, modifying, deleting and querying text databases
I use a guestbook program as an example to explain how PHP implements the five basic operations of data display, addition, modification, deletion, and query on text databases.
This text database has 10 fields in total: customer IP, speaking time, customer name, customer EMAIL, customer homepage address, message emoticon picture name, customer QQ, customer image picture, message content, and administrator reply content.
1. Add data program segments.
$date=date("Y-m-d H:i:s");//Get the system time
$ip = $HTTP_SERVER_VARS[REMOTE_ADDR]; //Get the speaking IP address
$text=encode($gb_text);//Remove the spaces after the message content.
$fp=fopen("gb.dat","a");//Open the gb.dat text file in write-only mode, with the file pointer pointing to the end of the file.
$str =$ip."|".$date."|".$gb_name."|".$gb_email."|".$gb_home."|".$face."|".$gb_qq."| ".$head."|".$text."|".$reply."
";//Assign the data of all messages to the variable $str. The purpose of "|" is to use it as the data interval symbol when dividing data in the future.
fwrite($fp,$str);//Write data to file
fclose($fp);//Close the file
showmessage("Message successful!","index.php","3");//The message is successful and will automatically return to the main interface after 3 seconds.
Among them, $gb_name, $gb_email, $gb_home, $face, $gb_qq, $head, $gb_text, and $reply are the data passed from the speech form.
2. Data display program segment
if (file_exists("gb.dat")){//Check whether the file exists
$array=file("gb.dat");//Read the entire contents of the file into the array $array
$arr=array_reverse($array);//Reverse the data in $array (that is, the last row is the first row, and so on) and read into each unit of array $arr ($arr[0].. .).
$num=count($array);//Get the number of information in the array $array (one line per information)
if ($num>0){//If the number of information is greater than zero (that is, the text database is not empty)
$total=ceil($num/$pagesize);//Calculate the total number of pages (take the largest integer, that is, round up any decimal point, $pagesize is the preset number of information displayed on each page)
if($page
$page=1;//Then the assigned value is 1
}
$number=($page-1)*$pagesize;//Calculate the digital number of the first message currently displayed (the digital number starts from zero, mainly to achieve the purpose of corresponding to the array unit number)
for($i=0;$i
$row=explode("|",$arr[$number]);//Use "|" as the delimiter to split the data of every $number unit in the array $arr, and assign these data to the array $rom
list($ip,$datetime,$name,$email,$home,$face,$qq,$head,$text,$reply)=$row;//Assign the unit data in the array $row to brackets in order Variables in
?
>//Display customer image picture
Nickname【 echo $name ?>】
//Display customer name
Published on: echo $datetime ?>//Display the time when the message was published
>//Display customer message emoticon pictures
echo $name ?>Say: echo $text; ?>//Display the content of customer messages
echo $reply ?>//Display reply content
" target="_blank">Visit echo $name ?>'s homepage// Hyperlink to customer homepage
Send a message to echo $name ?>//Connect the customer’s E-MAIL to the network manager u home www. bitscn.net
echo $name ?>’s QQ number is echo $qq ?>//Display the customer’s QQ number
The IP address of echo $name ?> is echo $ip ?>" //Display the customer’s IP address
reply//Connection statement for message reply
Delete//Message deletion statement (use the customer message time $datetime as the deletion identifier)
if ($number == $num-1)//If the unit number of the array is equal to the total number of messages minus one (because the unit number starts with zero, this means this is the last message)
{
break;//Jump out of the loop
}
$number = $number + 1; //Add 1 to the array unit number
}//Loop end character
}
if ($page 1)//If the current page number is not equal to 1
{
$back = $page - 1;//Decrease the current page number by 1, and assign this value to the variable $back
echo "First page";//Display the link to the first page
echo " Previous page" ;The current page number is equal to $back and its link is displayed
}
if ($page $total)//If the current page number is not equal to the total page number (the last page number)
{
$next = $page + 1; //Add 1 to the current page number and assign it to the variable $next
echo " Next page" ;//Show the next page link
echo " Last page"; Show last page link
}
echo "Number of pages: $page / $total";//Display the current page number and display the last page number
echo "There are $num messages in total";//Display message number information
}
else {
echo "
}
else {
echo "
}
3. Data modification program segment
$list=file("gb.dat");//Read the entire gb.dat file into the array $list. Each element of the array is a message ($list[0] is the data of the first message, $list[ 1] is the data of the first message... The network administrator has www.bitscn.net
$n=count($list);//Calculate the total number of messages in the $list content and assign it to the variable $n
if ($n>0){ //If the number of messages is greater than 0
$fp=fopen("gb.dat","w");//Open the file gb.dat
in write-only mode $gb_reply=encode($gb_reply);
for ($i=0;$i if(eregi($ttime,$list[$i])){//Compare the string matching time $ttime sent to send a message with the content in the array unit $list
$f=explode("|",$list[$i]);//If a match is found, use "|" as the delimiter to cut the message information $list[$i] (the $ith message), And assign these data to the array $f
$f[9]=$gb_reply;//Replace $f[9] (the last piece of data in the message) with $gb_reply (reply content).
$list[$i]=$f[0]."|".$f[1]."|".$f[2]."|".$f[3]."|".$f[ 4]."|".$f[5]."|".$f[6]."|".$f[7]."|".$f[8]."|".$f[ 9]." "; //Replace the contents of array unit $list[$i] with array $f plus the separator "|" (where $f[9] is the modified new data).
break;//Jump out of the loop
}
}//Loop end character
}
FOR($i=0;$i fwrite($fp,$list[$i]);//Create each unit of the array $list into one line and write it to the file gb.dat
}//Loop end character
fclose($fp);//Close the file
showmessage("Reply successfully!","index.php");//Reply successfully and automatically return to the main interface.
4. Data deletion program segment
$list=file("gb.dat");//Read the entire gb.dat file into the array $list. Each element of the array is a message ($list[0] is the data of the first message, $list[ 1] is the data of the first message....
$n=count($list);//Calculate the total number of messages in the $list content and assign it to the variable $n
if ($n>0){//If the number of messages is greater than 0
$fp=fopen("gb.dat","w");//Open the file gb.dat
in write-only mode for ($i=0;$i if(eregi($ttime,$list[$i])){//Match and compare the time $ttime sent to send a message with the string in the array $list[$i]
$list[$i]="";//If the match is successful, clear $list[$i] (to achieve the purpose of deletion)
break;//Jump out of the loop
}
}//Loop end character
FOR($i=0;$i fwrite($fp,$list[$i]);//Create each unit of the array $list into one line and write it to the file gb.dat
} //Loop terminator
fclose($fp);//Close the file
showmessage("Deleted successfully!","index.php");//Deleted successfully, automatically returns to the main interface.
}
5. Data query program segment

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
