PHP가 데이터를 캡처할 수 없는 문제에 대한 해결책: 1. 서버에서 "$parm=file_get_contents("php://input");"를 사용합니다. 2. 프런트 엔드는 " 메서드:'POST', 헤더:{'Content-Type':'application/x-www-form-urlencoded',},".
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 8.1, Dell G3 컴퓨터.
PHP가 데이터를 캡처할 수 없으면 어떻게 해야 하나요?
$_POST['email']을 사용하면 요청 데이터를 얻지 못합니다.
$parm=file_get_contents("php://input");//可以获取到请求头Content-Type: application/json var_dump($parm); var_dump($_POST['email']);//请求头Content-Type: application/x-www-form-urlencoded var_dump($_POST['password']);//请求头Content-Type: application/x-www-form-urlencoded
공식 웹사이트$_POST 설명
HTTP POST 요청의 Content-Type이 application/x-www-form-urlencoded 또는 multipart/form-data인 경우 변수는 다음 형식으로 현재 스크립트에 전달됩니다. 연관 배열
해결책 1: 서버에서
$parm=file_get_contents("php://input");//可以获取到请求头Content-Type: application/json
사용 해결 방법 2: 프런트 엔드에 요청 헤더 보내기
method:'POST', header:{ 'Content-Type':'application/x-www-form-urlencoded', },
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP가 데이터를 캡처할 수 없으면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!