标签:name 结合 ref lan 输出 字符 https 方法 url
在URL中参数若有×则会被转成x,例如:
$url = "http://www.test.com/index.php?id=1×tamp=1584947618&age=10"; echo $url;
输出结果为:http://www.test.com/index.php?id=1×tamp=1584947618&age=10
可以看到参数×tamp变成了xtamp。
$url = "http://www.test.com/index.php?timestamp=1584947618&id=1&age=10"; echo $url;
$url = "http://www.test.com/index.php?id=1&timestamp=1584947618&age=10"; echo $url;
$url = "http://www.test.com/index.php?id=1×tamp=1584947618&age=10"; echo htmlspecialchars($url);
标签:name 结合 ref lan 输出 字符 https 方法 url
原文地址:https://www.cnblogs.com/gyfluck/p/12558079.html