php URL编码解码函数

<?php

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

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

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注