10
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

phpenvでよく使うコマンド

10
Last updated at Posted at 2017-06-14

phpenvでよく使うコマンドについて記載

# インストール可能なバージョン確認
phpenv install -l

# インストール
phpenv install {version} 

# インストールバージョン確認
phpenv versions

# 全ディレクトリで使うバージョンを指定
$ phpenv global {version} 

# カレントディレクトリのみで使うバージョンを指定
$ phpenv local {version} 

# hashの更新
$ phpenv rehash

# 現在のバージョン確認
$ php -v

以上

10
6
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
10
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?