如果我通过 $_ GET PHP 将名称为 .
的 PHP 变量自动替换为 _
字符,例如:
<?php
echo "url is ".$_SERVER['REQUEST_URI']."<p>";
echo "x.y is ".$_GET['x.y'].".<p>";
echo "x_y is ".$_GET['x_y'].".<p>";
输出如下:
url is /SpShipTool/php/testGetUrl.php?x.y=a.b
x.y is .
x_y is a.b.
... 我的问题是: 有没有什么方法可以让这个停下来?我这辈子都想不明白我到底做了什么
我使用的 PHP 版本是5.2.4-2ubuntu5.3。