php version check command code example

Example 1: check the php version in ubuntu

php --version

Example 2: php get version

echo PHP_VERSION;

Example 3: checking php version

<?php
echo 'PHP version: ' . phpversion();
?>

Example 4: check php version

/* in terminal type it*/
php -v

Example 5: how to cheeck php

<?phpphpinfo(); ?>

Example 6: php version command linux

# php -v
PHP 5.4.16 (cli) (built: Mar  7 2018 13:34:47) 
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies

Tags:

Php Example