如何构建 mysqli 库?
How to build mysqli lib?
如何创建我将在配置 php 时使用的 mysqli 库?
我知道我应该使用标志:--with-mysqli=/path/to/mysql_config。但是我的问题是如何构建 mysqli 库?它是 mysql 来源的一部分吗?我想自己构建库。
wget https://www.php.net/distributions/php-7.3.13.tar.gz
tar xfz php-7.3.13.tar.gz --strip-components 1 -C .
./configure --with-mysqli=<where can I find this>
https://www.php.net/manual/en/mysqli.installation.php
--with-mysqli=/path/to/mysql_config
不是很明显,因为当它是包的一部分时您需要指定路径。
源代码位于:
./ext/mysqli 在 php tar 文件中
如何创建我将在配置 php 时使用的 mysqli 库?
我知道我应该使用标志:--with-mysqli=/path/to/mysql_config。但是我的问题是如何构建 mysqli 库?它是 mysql 来源的一部分吗?我想自己构建库。
wget https://www.php.net/distributions/php-7.3.13.tar.gz
tar xfz php-7.3.13.tar.gz --strip-components 1 -C .
./configure --with-mysqli=<where can I find this>
https://www.php.net/manual/en/mysqli.installation.php --with-mysqli=/path/to/mysql_config
不是很明显,因为当它是包的一部分时您需要指定路径。
源代码位于: ./ext/mysqli 在 php tar 文件中