zl程序教程

您现在的位置是:首页 >  后端

当前栏目

php URL编码解码函数代码

PHP编码代码 函数 url 解码
2023-09-27 14:27:47 时间

php URL编码解码函数代码

 

<?php 
$url = "www.liuan.mobi"; 
echo urlencode($url); //输出编码后的字符串 
?> 


 

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