如何构建 mysqli 库?



如何创建配置 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 文件中

相关内容

  • 没有找到相关文章

最新更新