Home > Backend Development > PHP Tutorial > php中$_POST[]取不到值怎么解决?

php中$_POST[]取不到值怎么解决?

PHPz
Release: 2020-06-24 16:40:58
Original
2174 people have browsed it

php中$_POST[]取不到值怎么解决?

php中$_POST[]取不到值怎么解决?

1、在php.ini 配置文件中,确保enable_post_data_reading值为On,这样才会自动将 POST 数据填入 $_POST 数组中。

1.jpg

2、检查头信息content-type是不是为“content-type:application/x-www-form-urlencoded" 这种传输是以表单的方式提交数据php使用$_POST方式接受。

如果头信息content-type为“content-type:application/json"这种传输是以json方式提交数据,php需要使用file_get_contents("php://input")获取输入流的方式接受

3、确保使用本地Apache服务器

例:如果用phpstorm自带的服务器,则$_POST不能接收form传的数据,不知道原因

更多相关知识,请访问 PHP中文网!!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template