php-symfonyHow to check PHP Symfony version?
To check the version of PHP Symfony, you can use the following command:
$ php bin/console --version
This will output the version of Symfony installed on your system, for example:
Symfony 3.4.20 (kernel: src, env: dev, debug: true)
The command consists of the following parts:
php: The command to run the PHP interpreterbin/console: The Symfony console application--version: The argument to output the version of Symfony
For more information, please refer to the Symfony documentation.
More of Php Symfony
- What are the required PHP Symfony extensions?
- How to create a backend with PHP Symfony?
- How to set up a scheduler in Symfony with PHP?
- How to install Symfony on Windows?
- How to install PHP Symfony on Ubuntu?
- How to fix "No PHP binaries detected" error in Symfony on Windows?
- How to use Collection with PHP Symfony?
- How to use websockets in PHP Symfony?
- How to update PHP Symfony?
- How to create a model in PHP Symfony?
See more codes...