LoginSignup
1
1

More than 5 years have passed since last update.

phpenv入れてからのはなし

Posted at

php-buildのアップデート

# cd [xxx]/phpenv/plugins/php-build/
# git pull

からのビルド

phpenv install 5.x.x
で良いんだけど、php.iniは引き継いでくれたりしない。特に同バージョンでのビルドし直しに注意!

peclがない!

phpizeでいいけど、どうせならrbenvっぽく使いこなしたい

# phpenv global 5.x.x
# cd [peclのソース]
# phpize
# ./configure
# make ...

globalなりlocalなり指定しない場合 ./configure で php-configのパスを指定しないといけない。

1
1
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
1
1