【安装】
下载 php 源程序:
wget http://php.net/distributions/php-7.3.23.tar.xz && tar -xvf php-7.3.23.tar.xz && cd php-7.3.23
进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择pcntl模块。
cd ext/pcntl/ && /usr/local/php/bin/phpize && ./configure --with-php-config=/usr/local/php/bin/php-config make && make install
输出:
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20180731/ Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-zts-20180731/
【设置】
在 php.ini 文件中添加:
; [pcntl] extension = "pcntl.so"
然后重启服务器即可加载。