是否可以在没有 .htaccess 或 php.ini 文件的情况下关闭魔术引号?
我的一个客户将他们的网站托管在 freeservers.com 上(应该不惜一切代价避免使用该主机)。
主机不允许 .htaccess 文件,并且服务器上没有可编辑的 php.ini 文件可供编辑。
但它确实有 magic_quotes 。这会破坏我所有的 POST 请求。
我还需要什么选项来关闭此功能?
One of my clients is hosting their site on freeservers.com ( a host that should be avoided at all costs ).
The host does not allow .htaccess files, and has no editable php.ini file on the server to edit.
But it does have magic_quotes on. Which is destroying all my POST requests.
What options do I have to turn this off still?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不。
没什么大不了的。
即使使用递归,循环 $_POST 数组并去掉斜杠也只需 5 行左右的函数。
或者我相信你可以在谷歌上搜索神奇的引言并做好准备。你知道,它已经在这里被发布了数千次。
No.
Not a big deal.
To loop over $_POST array and strip slashes is a function of scarcely 5 lines, even with recursion.
Or you can google for the magic quotes and get this ready, I believe. It was posted thousands times here already, you know.
您仍然可以使用 ini_set 在 PHP 脚本中关闭它,
如下所示
但禁用或者在 PHP 5.3.0 中使用 ini_set 启用魔术引号已被弃用。
You can still turn off it in PHP script using ini_set
like this
But disabling or enabling magic quotes with ini_set in PHP 5.3.0 is Deprecated.
我以前从未使用过 PHP.. 但我发现如果我将 php.ini 文件放在 PHP 接收 POST 请求的任何目录中.. 并将这一行放入其中。
问题解决了!没有 .htaccess 也没有根 php.ini 文件。
I've never used PHP before.. but I found that if I put a php.ini file in any directory where PHP is receiving a POST request.. and put this line in it.
Problem solved! No .htaccess and no root php.ini file..