apache_event_php-fpm 회로도:
nginx-php-fpm 회로도:
Worker-Master-Server
TCP -Nginx_PHP
Nginx- FastCGI
1. 모든 매개변수를 가져오려면 $_GET을 사용하세요. php7에는 액세스된 주소와 같은 _url 매개변수가 하나 더 있습니다. 이때 매개변수 _url = "Home/String/index2 "
2, PHP7에서는 오류입니다: PHP 주의 사항: 정의되지 않은 색인: 2행의 HTTP_USER_AGENT
php5.9는 알림
Error:PHP Notice: Undefined index: HTTP_USER_AGENT in line 2
php5.9则为一个notice
http://127.0.0.1/Home/String/index2?a=12&b=19
解决:http://stackoverflow.com/questions/16330496/php-notice-undefined-index-http-user-agent-in-line-2
2017/03/27 10:58:09 [error] 5286#0: *851 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: HTTP_USER_AGENT in /home/UserAgent.php on line 9" while reading response header from upstream
3、NULL
合并运算符 ,PHP7才正式加入了??
这个运算符:
if(!empty($_SERVER['HTTP_USER_AGENT'])){ $user_agent = $_SERVER['HTTP_USER_AGENT']; } else { $user_agent = ''; }
4、php-fpm
// 获取user参数的值(如果为空,则用'nobody') $username = $_GET['user'] ?? 'nobody'; // 等价于: $username = isset($_GET['user']) ? $_GET['user'] : 'nobody';
2017/03/31 20:56:19 [crit] 19288#0: *1 connect() to unix:/var/run/php7.0.9-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 127.0.0.1, server: www.phalcon3.com, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://unix:/var/run/php7.0.9-fpm.sock:", host: "127.0.0.1"
NULL
병합 연산자, PHP7은 공식적으로만 추가했습니다< code>??이 연산자: tinywan@tinywan:/usr/local/nginx/logs$ ll /var/run/php7.0.9-fpm.soc ls: 无法访问'/var/run/php7.0.9-fpm.sock': 没有那个文件或目录
php-fpm
이 시작되지 않는 결과rrreeerrreee오랜 시간 동안 작업한 결과 다음과 같은 결과가 나왔습니다. php-fmp가 시작되지 않았습니다. 핵심은 지속성입니다. 저는 제 자신을 믿습니다.🎜🎜관련 권장 사항: "🎜PHP 튜토리얼🎜"🎜위 내용은 PHP5.9를 PHP7로 업그레이드할 때 발생하는 몇 가지 함정(php-fpm 다이어그램)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!