php URL编码解码函数

简介:这是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);                            //输出解码后的字符串  
    ?>  

爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

http://biancheng.dnbcw.info/php/350529.html pageNo:3
原文地址:https://www.cnblogs.com/ooooo/p/2238727.html