この記事では、主に PHP インストール拡張機能 mysqli の実装手順とエラー解決方法を紹介します。この記事が、必要な方の参考になれば幸いです。
PHP インストール拡張機能 mysqli の実装手順とエラー解決#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コンパイルして渡す
extension=mysqli.so
以上がPHP での mysqli 拡張機能のインストールの実装手順とエラー解決の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。