php安装扩展mysqli

terminal

#cd php-5.3.6/ext/mysqli
#/usr/local/webserver/php/bin/phpize
#./configure --with-php-config=/usr/local/webserver/php/bin/php-config
#make
#make instal

报错:
checking for MySQLi support... yes
checking whether to enable embedded MySQLi support... no
mysql_config not found
configure: error: Please reinstall the mysql distribution


加入配置

#./configure --with-php-config=/usr/local/webserver/php/bin/php-config --with-mysqli=/usr/local/mysql/bin/mysql_config

编译通过

将生成的mysqli.so配置加入php.ini中

extension=mysqli.so


你可能感兴趣的:(php安装扩展mysqli)