>백엔드 개발 >PHP 문제 >PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법

PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법

WJ
WJ원래의
2020-06-10 17:05:334336검색

PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법

PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법은 무엇입니까?

문제 해결 php.ini 구성 수정php.ini配置

找到php.ini配置文件,查找enable_post_data_reading

php.ini 구성 파일을 찾아 enable_post_data_reading 변수를 검색하여 열린 상태로 수정하고 주석 처리 문장의 접두어

; Whether PHP will read the POST data.
; This option is enabled by default.
; Most likely, you won't want to disable this option globally. It causes $_POST
; and $_FILES to always be empty; the only way you will be able to read the
; POST data will be through the php://input stream wrapper. This can be useful
; to proxy requests or to process the POST data in a memory efficient fashion.
; http://php.net/enable-post-data-reading
enable_post_data_reading = On    //大约656行,修改此条

구성을 수정한 후에도 여전히 작동하지 않는 것을 발견하여 계속해서 정보를 확인했습니다.

비형식 데이터 가져오기

정보를 수집한 후 vue-axios가 비형식 데이터를 백엔드에 게시하는 것을 발견했습니다(Ajax와 다름). 비형식 데이터를 가져올 때 php://input

을 사용해야 합니다.

$raw = file_get_contents('php://input');//获取非表单数据echo $raw;//输出结果
PS:post时前端请求头要设置为
headers: {    "Content-type": "application/json; charset=utf-8"}
관련 추천: php tutorial

🎜

위 내용은 PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.