#!/bin/bash
wget http://pecl.php.net/get/mongo-1.4.5.tgz;
tar zxf mongo-1.4.5.tgz;
cd mongo-1.4.5;
/usr/local/php/bin/phpize;
./configure --with-php-config=/usr/local/php/bin/php-config;
make && make install;
本文共 255 字,大约阅读时间需要 1 分钟。
#!/bin/bash
wget http://pecl.php.net/get/mongo-1.4.5.tgz;
tar zxf mongo-1.4.5.tgz;
cd mongo-1.4.5;
/usr/local/php/bin/phpize;
./configure --with-php-config=/usr/local/php/bin/php-config;
make && make install;
转载于:https://my.oschina.net/bufenye/blog/211709