gpt4 book ai didi

php - 如何在每个脚本的基础上设置 POST 大小限制?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:05:53 25 4
gpt4 key购买 nike

预计到达时间:有人建议使用 ini_set(),但据我了解,这是服务器端设置;我在运行时需要每个脚本的独立性。例如,同时运行三个脚本:x.php 使用 2k,y.php 使用 4k,z.php 使用 8k。

如何以编程方式在每个脚本(即,不是服务器范围)上设置 POST 最大大小的限制?

例如,在 Perl 中,可以在每个脚本中简单地执行此操作,从而允许每个脚本在运行时设置自己的限制:

# The $POST_MAX variable also applies to the combined size of all the elements
# in a form. Therefore, you can set this variable to keep people from pasting
# huge amounts of junk into text fields, too.
$CGI::POST_MAX = 1024 * 2;

我意识到 php.ini 中有一个设置可以限制 所有 PHP 脚本的最大 POST 大小:

; Maximum size of POST data that PHP will accept.
; http://php.net/post-max-size
post_max_size = 8M

但我想知道如何在每个脚本的基础上执行此操作(因为每个脚本都有自己的限制)。

注意:大概可以在 Apache httpd.conf 和/或 .htaccess 中设置限制,但我不想这样做。

最佳答案

使用 ini_set 然后根据需要设置您的 php 设置。

示例

ini_set('upload_max_filesize', '60M');     
ini_set('max_execution_time', '999');
ini_set('memory_limit', '128M');
ini_set('post_max_size', '60M');

关于php - 如何在每个脚本的基础上设置 POST 大小限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15127502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com