Home  >  Article  >  Backend Development  >  关于百度搜索url的一个有关问题?

关于百度搜索url的一个有关问题?

WBOY
WBOYOriginal
2016-06-13 11:09:27796browse

关于百度搜索url的一个问题???????
在百度中http://www.baidu.com/baidu?word=%B2%A9%BF%CD的后面的这个%B2%A9%BF%CD=博客,我以为就是通过php的urldecode转译的,但是不是,请问一下有没有知道他的这个搜索词是怎么转化的,有没有php进行转化和还原的方式?谢谢!
------解决方案--------------------
你在url后面加上word=博客,它就直接变成 word=%B2%A9%BF%CD 了
echo $_GET['word'];  //输出 博客

你在自己页面试试,不需要转化
------解决方案--------------------
echo urlencode('博客');//%B2%A9%BF%CD

注意“博客”是 GBK 编码的

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