当前位置:Gxlcms > PHP基础 > php URL编码解码函数代码

php URL编码解码函数代码

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

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


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

人气教程排行