简介:这是php URL编码解码函数的详细页面,介绍了和php,php, url, code php URL编码解码函数有关的知识、技巧、经验,和一些php源码等。

class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=350529' scrolling='no'>


<?php  
$url = "http://www.php.net";  
echo urlencode($url);                           //输出编码后的字符串  
?>


<?php  
    $url = "http://www.php.net";  
    $newurl = urlencode($url);                          //首先对$url进行编码  
    echo urldecode($newurl);                            //输出解码后的字符串  
    ?>