1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 16:44:56 +02:00
tldr/pages/common/phpenv.md
2019-01-23 18:02:13 +00:00

31 lines
532 B
Markdown

# phpenv
> A PHP version manager for development purposes.
- Install a PHP version globally:
`phpenv install {{version}}`
- Refresh shim files for all PHP binaries known to `phpenv`:
`phpenv rehash`
- List all installed PHP versions:
`phpenv versions`
- Display the currently active PHP version:
`phpenv version`
- Set the global PHP version:
`phpenv global {{version}}`
- Set the local PHP version, which overrides the global version:
`phpenv local {{version}}`
- Unset the local PHP version:
`phpenv local --unset`