php基础

关注公众号 jb51net

关闭
首页 > 网络编程 > PHP编程 > php基础 > php URL编码解码

php URL编码解码函数代码

作者:

php URL编码解码函数代码,后面都有详细的说明。最近的php将会让你学到更多。
复制代码 代码如下:

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


复制代码 代码如下:

<?php
$url = "https://www.jb51.net";
$newurl = urlencode($url); //首先对$url进行编码
echo urldecode($newurl); //输出解码后的字符串
?>
您可能感兴趣的文章:
阅读全文