首页 > 代码库 > ubuntu 编译php随笔

ubuntu 编译php随笔

1. 安装git

sudo apt install git


2. 通过git获取php源码

git clone https://git.php.net/repository/php-src.git

3. 进入php-src/ 准备编译

cd php-src/

./buildconf

技术分享

运行提示需要 autoconf 。

4. 安装 autoconf

sudo apt-get install autoconf


5. 重新进行php编译

技术分享

ubuntu 编译php随笔