Skip to content

Getting the PHP version

Get used PHP version: phpversion()

Sometimes, you need to retrieve the version of PHP running. The phpversion() function returns a string with the version of PHP used for running the current script, for example 8.3.9.

$version = phpversion();
echo $version;