Rumah > Artikel > rangka kerja php > swoole常见错误有哪些
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,再进行安装。
Atas ialah kandungan terperinci swoole常见错误有哪些. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!