urlencode functions in php that may be used to encrypt strings [base64_encode, urlencode, sha1]

WBOY
Release: 2016-07-29 08:47:44
Original
976 people have browsed it

The login principle is quite complicated. It is too simple for me to think that curl will get the page and then post it.
Collate the functions of price processing strings encountered:

Copy the code The code is as follows:


$encryption = "username";
echo base64_encode ($encryption);//echo "dXNlcm5hbWU= ";
echo "
";
echo urlencode("http://".$encryption);//echo " http%3A%2F%2Fusername ";
echo "
" ;
echo sha1($encryption);//echo "249ba36000029bbe97499c03db5a9001f6b734ec"
echo "
";
?>


Record their approximate appearance so that they can be quickly identified when encountering classes in the future.
By the way, here is the address of the article where I found the script: http://www.jb51.net/article/29486.htm

The above introduces the functions [base64_encode, urlencode, sha1] that may be used to encrypt strings in urlencode PHP, including the content of urlencode. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
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 Tutorials
More>
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!