swoole常見錯誤
make或make install無法執行或編譯錯誤 ## swoole影片教學)
NOTICE: PHP message: PHP Warning: PHP Startup: swoole: Unable to initialize module Module compiled with module API=20090626 PHP compiled with module API=20121212 These options need to match in Unknown on line 0
php版本和編譯時使用的phpize和php-config不對應,需要使用絕對路徑來進行編譯。使用絕對路徑執行PHP。
/usr/local/php-5.4.17/bin/phpize ./configure --with-php-config=/usr/local/php-5.4.17/bin/php-config /usr/local/php-5.4.17/bin/php server.php
缺少mysql頭檔
php_mysqli_structs.h:64:23: fatal error: my_global.h: No such file or directory沒有找到mysqlclient的頭文件,需要安裝mysqlclient-dev建議自行編譯php,不要使用Linux套件管理系統自帶的php版本
缺少pcre.h頭檔
fatal error: pcre.h: No such file or directory原因是缺少pcre,需要安裝libpcre
Cannot find autoconf
phpize指令需要autoconf工具,請先安裝它。make install失敗
make install需要root權限,如果不是以root使用者登入的,請用sudo或su,再進行安裝。以上是swoole常見錯誤有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!