您的当前位置:首页php URL编码解码函数代码

php URL编码解码函数代码

2020-11-27 来源:六九路网

代码如下:
<?php
$url = "//www.gxlcms.com";
echo urlencode($url); //输出编码后的字符串
?>

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

显示全文