Home >Backend Development >PHP Tutorial >php5.4正常,php5.2下无法接收POST数组。

php5.4正常,php5.2下无法接收POST数组。

WBOY
WBOYOriginal
2016-06-23 13:51:59925browse

本来是把项目从PHP5.4移植到5.2时发现登录那里无法接收POST数组,然后发现写个普通的表单也无法接收POST数组。
把php5.4和5.2的配置文件对比了下,尝试改了几个不同的配置项也没作用,比如variables_order改成"GP"后POST数组还是空。
请帮忙分析下这是什么问题。谢谢。


回复讨论(解决方案)

我把$_GET,$_POST,$_COOKIE,$_ENV ,$_SERVER 都打印出来也没有找到表单中的name(user_name,pass_word)。

修改php.ini:
   apc.rfc1867=0
   variables_order    从EGPCS改为GP
   register_globals   从On改为Off
   register_globals   从On改为Off
   register_lOng_arrays   从On改为Off

修改表单:
   enctype="application/x-www-form-urlencoded"
   
以上都没有作用

发现问题了:
是我的定义的.htaccess文件中,post_max_size和upload_max_filesize超过了2G。
将post_max_size改为1990M,upload_max_filesize改为1900M后解决。

那 post.php 输出什么?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:oschina git上传代码BUGNext article:curl抓取乱码