LoginSignup
2
3

More than 5 years have passed since last update.

MacでPHP-MongoDB Driverをインストールするメモ

Posted at

環境

  • OSX 10.8.2
  • PHP 5.3.15

失敗

$ curl -o go-pear.php http://pear.php.net/go-pear
↑では、version依存でダメ

成功

$ sudo php /usr/lib/php/install-pear-nozlib.phar 
$ sudo pecl install mongo
$ cp /etc/php.ini.default  /etc/php.ini
$ vi /etc/php.ini
→extension=mongo.soを追加

php phpinfo.php | grep mongo
→出力されればOK
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3