一、使用$_GET 獲取全部參數,php7 會多出一個參數:_url ,例如訪問的地址php
http://127.0.0.1/Home/String/index2?a=12&b=19
此時的的參數_url = "Home/String/index2"nginx
二、在PHP7 中爲一個Error:PHP Notice: Undefined index: HTTP_USER_AGENT in line 2 apache
php5.9則爲一個notice php7
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
解決:http://stackoverflow.com/questions/16330496/php-notice-undefined-index-http-user-agent-in-line-2php-fpm
if(!empty($_SERVER['HTTP_USER_AGENT'])){ $user_agent = $_SERVER['HTTP_USER_AGENT']; } else { $user_agent = ''; }
三、NULL 合併運算符 ,PHP7才正式加入了??這個運算符:url
// 獲取user參數的值(若是爲空,則用'nobody') $username = $_GET['user'] ?? 'nobody'; // 等價於: $username = isset($_GET['user']) ? $_GET['user'] : 'nobody';
四、php-fpm 沒有啓動的後果spa
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"
tinywan@tinywan:/usr/local/nginx/logs$ ll /var/run/php7.0.9-fpm.sock
ls: 沒法訪問'/var/run/php7.0.9-fpm.sock': 沒有那個文件或目錄
搞了半天,原來php-fmp 沒有啓動,3d