search
HomeBackend DevelopmentPHP TutorialFunction description of the main functions of the PHP guestbook module (code can be implemented)_PHP tutorial
Function description of the main functions of the PHP guestbook module (code can be implemented)_PHP tutorialJul 21, 2016 pm 03:03 PM
matchphponemaincodefunctionFunctiondeal withsensitivemoduleofparseillustratefilter

1. Sensitive word processing
1. Filtering sensitive words
preg_match() function is used to search for all content matching a given regular expression in a string , returns True if it exists, otherwise returns False.

Syntax:
int preg_match(string pattern,string subject[,array matches[,int flags]])
preg_match( )The function parameter description is as follows:
pattern:
Necessary parameters, the regular expression that needs to be matched
subject:Necessary parameters, the input string
matches: Optional parameters. An array that outputs search results. For example, $out[0] will contain results that match the entire pattern, $out[1] will contain results that match the first captured subpattern in parentheses, and so on
flags:Optional parameter. Tag: PREG_OFFSET_CAPTURE, for each matching result page that appears, its associated string offset is returned at the same time, available after PHP 4.3.0.

The specific implementation method is as follows:
First, use the file() function to read the sensitive words stored in the sub-text file (each sensitive word is a separate line), and add the total Stored in the array $file_word.
Then, use a for loop statement to automatically read array elements (sensitive words), and directly use regular expressions to check whether the message information submitted by the user contains sensitive words.

When the user posts a message and submits Li Yan's message, the message will be compared with the sensitive words stored in the array. If the message contains sensitive words, a prompt message will pop up. Otherwise, the message will pop up. Published successfully. The key code to implement sensitive word filtering is as follows:

Copy code The code is as follows:

if (is_file("./filterwords.txt ")){ //Determine whether the given file name is a normal file
$filter_word = file("filterwords.txt"); //Read the entire file into an array
$str=$_POST ['content'];
for($i=0;$i if(preg_match("/" .trim($filter_word[$i])."/i",$str)){ //Apply regular expressions to determine whether the message message passed contains sensitive words
echo "<script> alert(' The message contains sensitive words! ');history.back(-1);</script>";
exit;
}
}
}

file() function
array file (string filename [, int use_include_path [, resource context]])
The same as readfile(), except that file() returns the file as an array . Each cell in the array is a corresponding line in the file, including newlines. If file() fails, it returns FALSE.
2, add sensitive words to the text file
The main function of php writing sensitive words to the text file
(1) is_writable() function
The is_writable() function is used to determine whether a file exists and is writable. If the above conditions are met, it returns True, otherwise it returns False.
Syntax: bool is_writable(string filename) parameter filename is used to specify the full path of the file (c:/leaveMessage/filterwords.txt) or relative path (corresponding to the calling file path filterwords.txt), Writable returns true, unwritable returns false
Example:
Copy code The code is as follows:

if(is_writable("filterwords.txt")){
echo "Writable file";
} else {
echo "Unwritable file";
}

(2)fopen() function
fopen() function is used to open a file and return the marked pointer of the file. The file can be local or remote.
Syntax: resource fopen(string filename,string mode[,int use_include_path[,resource context]])
Parameters:
filename:
Required parameters. Used to specify the local or remote address of the file to be opened
mode:Required parameters. Use_include_path: optional parameter to specify the mode in which the file is to be opened. If this parameter is set to True, PHP will try to open the file according to each pointer in the include_path standard include path
context: optional parameter. Set some options to improve file streaming performance

mode file opening mode parameter description:
'r' Open in read-only mode, pointing the file pointer to the file header.
'r+' Open in read-write mode and point the file pointer to the file header.
'w' turns on writing mode, points the file pointer to the file header and truncates the file size to zero. If the file does not exist, try to create it.
'w+' Open in read-write mode, point the file pointer to the file header and truncate the file size to zero. If the file does not exist, try to create it.
'a' opens in writing mode and points the file pointer to the end of the file. If the file does not exist, try to create it.
'a+' Open in read-write mode and point the file pointer to the end of the file. If the file does not exist, try to create it. 'x' creates and opens for writing, pointing the file pointer to the file header. If the file already exists, the fopen() call fails and returns FALSE, and generates an E_WARNING level error message. If the file does not exist, try to create it. This is equivalent to specifying the O_EXCL|O_CREAT flag to the underlying open(2) system call. This option is supported by PHP4.3.2 and later versions and can only be used for local files. 'x+' creates and opens it for reading and writing, pointing the file pointer to the file header. If the file already exists, the fopen() call fails and returns FALSE, and generates an E_WARNING level error message. If the file does not exist, try to create it. This is equivalent to specifying the O_EXCL|O_CREAT flag to the underlying open(2) system call. This option is supported by PHP 4.3.2 and later, and can only be used for local files.

Example: The fopen() function opens the file in read-only mode
Copy the code The code is as follows:

$fp=fopen("filterwords.txt","r");
?>

(3) fseek() function
fseek() function is used to set the position of the file pointer
Syntax: int fseek(resource handle, int offset[,int whence])
Parameters:
handle:
Required parameters. The file identifier returned after opening a file
offset:necessary parameter. Used to set the position of the file pointer
whence: can omit parameters.
fessk() Description of the whence parameter of the function
seek_set: Set the position equal to offset bytes. This value is the default value of this parameter
seek_cur:Set the position equal to the current position plus offset bytes
seek_end:Set the position equal to the end of the file plus offset bytes Bytes
For example, use the fopen() function to open the file "test.txt", then read the 4096-byte content of the file, and finally use the fseek() function to restore the file pointer to its original position.
Copy code The code is as follows:

$fp=fopen("filterwords.txt", "r"); //Open a file in read-only mode
$data=fgets($fp,4096); //Read a line of 4096 bytes in the file
fseek($fp,0 ); //Make the file pointer point to the 0th byte position
?>

string fgets(int handle[,int length])
from the file pointed to by handle Reads a line and returns a string up to length - 1 bytes long. Stops when a newline character (included in the return value), EOF, or length- 1 bytes has been read (whichever occurs first). If length is not specified, it defaults to 1K, or 1024 bytes. (Considering program execution efficiency, a fixed length value is generally used)
(4) fwrite() function
fwrite() function is used to write a string into a specified file , and can specify the size of written bytes.
Syntax: int fwrite(resource handle,string string[,int length])
Parameter description:
handle:
Required parameters. File identification pointer
string:Required parameters. The string to be written to a file
length: can omit parameters. Refers to the length of the written file. If this parameter is omitted, all the contents of the specified string will be written to the file
For example: the fwrite() function writes the string "PHP Guestbook" into the filterwords.txt file
Copy code The code is as follows:

$fp=fopen("filterwords.txt","w+");
$str="PHP Guestbook";
if(fwrite($fp ,$str)){
echo "File writing successful!";
}else{
echo "File writing failed";
}
?>

(5)fclose() function
fclose() function is used to close the file pointed to by the specified file identifier.
Syntax: bool fclose(resource handle)
The parameter handle is the file identifier returned by the fopen() function or fsockopen() function after successfully opening a file.
In the guestbook module, the function introduced above is used to add sensitive words to the text file "filterwords.txt".
Copy code The code is as follows:

if($_POST){
$filename ="../filterwords.txt";
if(is_writable($filename)){
$file=fopen($filename,'r+'); //Open in read-write mode, point the file pointer to the file head.
}
else{
echo "File".$filename."Not writable";
}
//Write the file at the end of the file
fseek($file,0,SEEK_END ); //Set the pointer position. The SEEK_END setting position is equal to the end of the file plus offset (here is zero) bytes
$word=$_POST[txt_word];
fwrite($file,$word);
fwrite($file,"rn");
fclose($file);
}
?>

3, read the file Sensitive words
Copy code The code is as follows:

$filename=".. /filterwords.txt";
if(is_readable($filename)){
$arr=file($filename);
}
else{
echo "File".$filename. "Unreadable";
}
while(list($name,$value)=each($arr)){ //Traverse the array
$a.="$value".",";
}
echo "
The sensitive words are as follows:
".$a;
?>

(1)is_readable() Determine whether the file exists and is readable. If the above conditions are met, return True
Syntax: bool is_readable(string filename), The parameter filename is used to specify the full path of the file
(2)void list(mixed...)
Like array(), this is not a real function, but a language structure. list() assigns values ​​to a set of variables in one step. list() can only be used on numerically indexed arrays and assumes that numerical indexing starts from 0.
For example:
Copy code The code is as follows:

$info = array('coffee', 'brown', 'caffeine');
list($drink, $color, $power ) = $info;
print "$drink is $color and $power makes it special.n";
//coffee is brown and caffeine makes it special.
list($drink, $color) = $info;
print "$drink is $color.n";
//coffee is brown.
?>

(3)array each (array array)
Returns the key and value of the current pointer position in the array array and moves the array pointer forward. The key-value pair is returned as an array of four cells, with key names 0, 1, key and value. Cells 0 and key contain the key names of the array cells, and 1 and value contain the data. If the internal pointer goes beyond the end of the array, each() returns FALSE.
Copy code The code is as follows:

$foo = array ("bob", "fred ", "jussi", "jouni", "egon", "marliese");
$bar = each($foo);
print_r($bar);
?>

each() returns an array as follows [key] => 0
}
list() only works on numeric indexes, and the default key starts from zero. Therefore, list($name,$value) assigns the key 0 and the value bob to $name and $value respectively.

4 to achieve full selection and inverse selection of the check box

according to the database The content uses a for loop statement to dynamically create the number of check boxes. The check boxes that are all selected or deselected must be set to name note_id[], and the value of the check box is the ID number of the message message.


Add a checkbox that selects all , as content to select. When the check box is checked, the custom function check_all() function is called to set the check box to be all selected.
Select all span>
Select all implementation, traverse all check boxes form.elements[i], and then set the checked attribute of each multi-option to True.
Implementation of inverse selection, traverse all check boxes form.elements[i], get the checked attribute value of the check box, if it is True, set it to False, otherwise set it to True, which is the opposite setting of the current value.



Copy code

The code is as follows:
for (var i=0;i //form.elements.length gets the number of page form input elements Numbers, such as checkbox, radio, text, button, submit, etc.
var e = form.elements[i];
e.checked == true ? e.checked = false : e.checked = true;
}
}
//Select all check_box
function check_all(form){
for(var i=0;i var e=form.elements[i];
e.checked=true;
}
}





2. Guestbook code analysis

1. The problem of intercepting Chinese strings with substr()
Function: string substr(string string, int start, int [length]);
Parameter description:
string:
Required, indicating the string to be processed
start:
Required, indicating starting from the start position of the string string Take, if start is a negative number, then count from the end of the string
length:
is optional, indicating the length of the string to be taken, if length is a negative number, it means taking the last length length The character
Chinese characters occupy two lengths, and English characters and symbols occupy one length. PHP built-in function substr(string str,intstart,[int length]) is used to intercept the specified string length. There is no problem when intercepting English strings, but when intercepting Chinese or mixed Chinese and English strings, there will be a problem that the last character turns into a question mark. The following is a custom Chinese string interception function:


Copy the code
The code is as follows:
function str_cut($str,$start,$length){ //Chinese string interception function $str_new=iconv_substr($str,$start,$length,"utf-8"); if($start==0){ if(strlen(utf8_decode($str))>($length+$start)){
$str_new.=".";
}
}
return $str_new;
}



2. The htmlspecialchars() function converts some predefined characters into HTML entities. Functions are designed to prevent illegal operations by users.

For example:

Copy code
The code is as follows:
$str='
I added Half layer
Half table row mark
http://www.jb51.net">Script Home'; echo htmlspecialchars($str);

The output is:
The half layer I added
Half table row mark
http://www.jb51.net">Script Home
3,str_replace( ) function uses a string to replace other characters in the string.
Syntax: str_replace(find,replace,string,count)
Parameter description:
find:
must. Specifies the value to be found.
replace:Required. Specifies the value to replace the find content
string: is required. Specifies the string to be searched
count:optional. A variable counting the number of substitutions

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327862.htmlTechArticle1. Sensitive word processing 1. Filter sensitive words. The preg_match() function is used to search for all the characters matching the given words in the string. The content matched by a certain regular expression, returns True if it exists, otherwise returns Fa...
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
Python解析XML中的特殊字符和转义序列Python解析XML中的特殊字符和转义序列Aug 08, 2023 pm 12:46 PM

Python解析XML中的特殊字符和转义序列XML(eXtensibleMarkupLanguage)是一种常用的数据交换格式,用于在不同系统之间传输和存储数据。在处理XML文件时,经常会遇到包含特殊字符和转义序列的情况,这可能会导致解析错误或者误解数据。因此,在使用Python解析XML文件时,我们需要了解如何处理这些特殊字符和转义序列。一、特殊字符和

Python编程解析百度地图API文档中的坐标转换功能Python编程解析百度地图API文档中的坐标转换功能Aug 01, 2023 am 08:57 AM

Python编程解析百度地图API文档中的坐标转换功能导读:随着互联网的快速发展,地图定位功能已经成为现代人生活中不可或缺的一部分。而百度地图作为国内最受欢迎的地图服务之一,提供了一系列的API供开发者使用。本文将通过Python编程,解析百度地图API文档中的坐标转换功能,并给出相应的代码示例。一、引言在开发中,我们有时会涉及到坐标的转换问题。百度地图AP

PHP8.0中的XML解析库PHP8.0中的XML解析库May 14, 2023 am 08:19 AM

随着PHP8.0的发布,许多新特性都被引入和更新了,其中包括XML解析库。PHP8.0中的XML解析库提供了更快的解析速度和更好的可读性,这对于PHP开发者来说是一个重要的提升。在本文中,我们将探讨PHP8.0中的XML解析库的新特性以及如何使用它。什么是XML解析库?XML解析库是一种软件库,用于解析和处理XML文档。XML是一种用于将数据存储为结构化文档

使用Python解析SOAP消息使用Python解析SOAP消息Aug 08, 2023 am 09:27 AM

使用Python解析SOAP消息SOAP(SimpleObjectAccessProtocol)是一种基于XML的远程过程调用(RPC)协议,用于在网络上不同的应用程序之间进行通信。Python提供了许多库和工具来处理SOAP消息,其中最常用的是suds库。suds是Python的一个SOAP客户端库,可以用于解析和生成SOAP消息。它提供了一种简单而

使用Python解析带有命名空间的XML文档使用Python解析带有命名空间的XML文档Aug 09, 2023 pm 04:25 PM

使用Python解析带有命名空间的XML文档XML是一种常用的数据交换格式,能够适应各种应用场景。在处理XML文档时,有时会遇到带有命名空间(namespace)的情况。命名空间可以防止不同XML文档中元素名的冲突,提高了XML的灵活性和可扩展性。本文将介绍如何使用Python解析带有命名空间的XML文档,并给出相应的代码示例。首先,我们需要导入xml.et

PHP中的HTTP Basic鉴权方法解析及应用PHP中的HTTP Basic鉴权方法解析及应用Aug 06, 2023 am 08:16 AM

PHP中的HTTPBasic鉴权方法解析及应用HTTPBasic鉴权是一种简单但常用的身份验证方法,它通过在HTTP请求头中添加用户名和密码的Base64编码字符串进行身份验证。本文将介绍HTTPBasic鉴权的原理和使用方法,并提供PHP代码示例供读者参考。一、HTTPBasic鉴权原理HTTPBasic鉴权的原理非常简单,当客户端发送一个请求时

PHP 爬虫实战之获取网页源码和内容解析PHP 爬虫实战之获取网页源码和内容解析Jun 13, 2023 am 10:46 AM

PHP爬虫是一种自动化获取网页信息的程序,它可以获取网页代码、抓取数据并存储到本地或数据库中。使用爬虫可以快速获取大量的数据,为后续的数据分析和处理提供巨大的帮助。本文将介绍如何使用PHP实现一个简单的爬虫,以获取网页源码和内容解析。一、获取网页源码在开始之前,我们应该先了解一下HTTP协议和HTML的基本结构。HTTP是HyperText

PHP中的单点登录(SSO)鉴权方法解析PHP中的单点登录(SSO)鉴权方法解析Aug 08, 2023 am 09:21 AM

PHP中的单点登录(SSO)鉴权方法解析引言:随着互联网的发展,用户通常要同时访问多个网站进行各种操作。为了提高用户体验,单点登录(SingleSign-On,简称SSO)应运而生。本文将探讨PHP中的SSO鉴权方法,并提供相应的代码示例。一、什么是单点登录(SSO)?单点登录(SSO)是一种集中化认证的方法,在多个应用系统中,用户只需要登录一次,就能访问

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software