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
- How to use dependency injection in Symfony with PHP?
- How to install Symfony on Windows?
- How to create tests in Symfony with PHP?
- How to upload a file in PHP Symfony?
- How to create a model in PHP Symfony?
- How to create a backend with PHP Symfony?
- How to use the messenger component in PHP Symfony?
- How to generate a model in PHP Symfony?
- What are the required PHP Symfony extensions?
- How to integrate Vue.js with PHP Symfony?
See more codes...