How to know what version of PHP is used on my xampp?
Posted: Sun Apr 22, 2018 5:38 am
I am using xampp on my Ubuntu OS. And I need to know what version of PHP my xampp is using. How do I do that?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
echo 'Current PHP version: ' . phpversion();
?>Code: Select all
<?php
phpinfo();