php7의 출현으로 인한 실질적인 성능 향상으로 인해 새 버전의 기능을 경험해보고 싶어서 업그레이드했습니다.
웹사이트에서 인터페이스를 요청할 때 오류를 발견하고 문제 해결 후 해결 방법을 기록했습니다.
PHP를 업그레이드한 후 사이트에서 오류를 보고했는데 프롬프트는 다음과 같습니다.
Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set ‘always_populate_raw_post_data‘ to ‘-1‘ in php.ini and use the php://input stream instead. in Unknown on line 0 Warning: Cannot modify header information - headers already sent in Unknown on line 0
PHP 공식 웹사이트를 확인한 후, php5.6.X에서 일부 기능은 향후 버전에서 더 이상 사용되지 않는다는 것을 알았습니다. 자세한 내용을 확인하세요.
http://php.net/manual/zh/migration56.deprecated.php
이유 is:
$HTTP_RAW_POST_DATA 和 always_populate_raw_post_data
always_populate_raw_post_data를 사용하면 $가 채워집니다. HTTP_RAW_POST_DATA를 사용할 때 E_DEPRECATED 오류가 발생합니다.
다음 PHP 버전에서는 제거될 수 있으므로 $HTTP_RAW_POST_DATA 대신 php://input을 사용하세요.
always_populate_raw_post_data를 -1로 설정하면(이렇게 하면 $HTTP_RAW_POST_DATA가 정의되지 않게 되므로 E_DEPRECATED 오류가 발생하지 않습니다) 새로운 동작을 경험할 수 있습니다.
복구 방법:
1. php 구성 파일을 수정하고 php.ini를 찾습니다. Always_populate_raw_post_data를 켜고 -1로 설정합니다.
always_populate_raw_post_data = -1
2. $HTTP_RAW_POST_DATA가 프로젝트에 유용하다면 다음과 같이 변경하세요.
원래 $info = $HTTP_RAW_POST_DATA;
$info = file_get_contents('php://input');
로 변경하세요. 추천: 《PHP7》
위 내용은 php7 업그레이드 후 오류 처리 정보의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!