- $url ="http://www.ite5e.com";
- echo urlencode($url); //输出编码后的字符串
- ?>
-
- $url = "http://www.ite5e.com";
- $newurl = urlencode($url); //首先对$url进行编码
- echo urldecode($newurl); //输出解码后的字符串
- ?>
-
http://www.bkjia.com/PHPjc/486135.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486135.htmlTechArticle?php $url ="http://www.ite5e.com"; echo urlencode($url); //输出编码后的字符串 ? ?php $url = "http://www.ite5e.com"; $newurl = urlencode($url); //首先对$url进行编码...