php 添加扩展

进入源码文件的ext中。缺少哪个进入哪个文件
/usr/local/php/bin/phpize
./configura --with-php-config=/url/local/php/bin/php-config --enable-sysvmsg (假设这里需要添加“sysvmsg"扩展)
sudo make && make install
然后在php.ini中添加extension = "sysvmsg.so",然后jibingOK 啦!

你可能感兴趣的:(php 添加扩展)