是否可以在没有 .htaccess 或 php.ini 文件的情况下关闭魔术引号?

发布于 2024-12-11 19:12:30 字数 184 浏览 0 评论 0原文

我的一个客户将他们的网站托管在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

筑梦 2024-12-18 19:12:31

是否可以在没有 .htaccess 或 php.ini 文件的情况下关闭魔术引号?

不。

这会破坏我所有的 POST 请求。

没什么大不了的。
即使使用递归,循环 $_POST 数组并去掉斜杠也只需 5 行左右的函数。
或者我相信你可以在谷歌上搜索神奇的引言并做好准备。你知道,它已经在这里被发布了数千次。

Is it possible to turn off magic quotes without an .htaccess or a php.ini file?

No.

Which is destroying all my POST requests.

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.

林空鹿饮溪 2024-12-18 19:12:31

您仍然可以使用 ini_set 在 PHP 脚本中关闭它,

如下所示

ini_set('magic_quotes_gpc',"0");

但禁用或者在 PHP 5.3.0 中使用 ini_set 启用魔术引号已被弃用。

You can still turn off it in PHP script using ini_set

like this

ini_set('magic_quotes_gpc',"0");

But disabling or enabling magic quotes with ini_set in PHP 5.3.0 is Deprecated.

慵挽 2024-12-18 19:12:31

我以前从未使用过 PHP.. 但我发现如果我将 php.ini 文件放在 PHP 接收 POST 请求的任何目录中.. 并将这一行放入其中。

magic_quotes_gpc = Off

问题解决了!没有 .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.

magic_quotes_gpc = Off

Problem solved! No .htaccess and no root php.ini file..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文