您好,登錄后才能下訂單哦!
小編給大家分享一下PHP5.9 升級到PHP7 可能遇到什么問題,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
apache_event_php-fpm 示意圖:
nginx-php-fpm示意圖:
Worker-Master-Server
TCP-Nginx_PHP
Nginx-FastCGI
1、使用$_GET 獲取所有參數,php7 會多出一個參數:_url ,例如訪問的地址
http://127.0.0.1/Home/String/index2?a=12&b=19
此時的的參數_url = "Home/String/index2"
2、在PHP7 中為一個Error:PHP Notice: Undefined index: HTTP_USER_AGENT in line 2
php5.9則為一個notice
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-2
if(!empty($_SERVER['HTTP_USER_AGENT'])){ $user_agent = $_SERVER['HTTP_USER_AGENT']; } else { $user_agent = ''; }
3、NULL
合并運算符 ,PHP7才正式加入了??
這個運算符:
// 獲取user參數的值(如果為空,則用'nobody') $username = $_GET['user'] ?? 'nobody'; // 等價于: $username = isset($_GET['user']) ? $_GET['user'] : 'nobody';
4、php-fpm
沒有啟動的后果
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.soc ls: 無法訪問'/var/run/php7.0.9-fpm.sock': 沒有那個文件或目錄
以上是“PHP5.9 升級到PHP7 可能遇到什么問題”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。