Page 1 of 1

How to tell what version of PHP you are using?

Posted: Fri Dec 22, 2006 12:03 am
by Mythic Fr0st
How do I tell what version of PHP I am using?

Posted: Fri Dec 22, 2006 12:49 am
by dibyendrah

Code: Select all

<?php
phpinfo();
?>
It will display in detail about your server configuration in details.

mm

Posted: Fri Dec 22, 2006 1:01 am
by Mythic Fr0st
Ok Thanks

Posted: Fri Dec 22, 2006 3:13 am
by timvw
Or use the predefined constant PHP_VERSION.