Home> 类库下载> PHP类库> body text

The functions of urldecode(), urlencode() and stripslashes() in php

高洛峰
Release: 2016-10-13 16:06:15
Original
1581 people have browsed it

The principle of

urlencode() function is to first convert Chinese characters into hexadecimal, and then add an identifier % in front of each character. The

urldecode() function is opposite to the urlencode() function. It is used to decode the encoded URL string. The principle is to convert the hexadecimal string into Chinese characters.

stripslashes() function


Example

Remove backslashes:

Copy after login

Run the example

Definition and usage

stripslashes() function removes backslashes added by addslashes() function.

Tips: This function can be used to clean data retrieved from the database or from HTML forms.

Grammar

stripslashes(string)
Copy after login

The functions of urldecode(), urlencode() and stripslashes() in php

source:php.cn
Statement of this Website
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
Popular Recommendations
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!