当前位置:Gxlcms > PHP教程 > phpURL编码解码函数

phpURL编码解码函数

时间:2021-07-01 10:21:17 帮助过:17人阅读

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

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

人气教程排行