Answers for "check php version in windows"

PHP
1

checking php version

<?php
echo 'PHP version: ' . phpversion();
?>
Posted by: Guest on February-12-2021
1

how to get php version in xampp

Open command prompt
Locate directory using cd C:/Xampp/php
Type command php -v
You will get your php version details
Posted by: Guest on December-26-2020
1

check php version

/* in terminal type it*/
php -v
Posted by: Guest on March-24-2021
1

how to check php version in php

<?php
  echo 'PHP version:' . phpinfo();
?>
Posted by: Guest on April-18-2021

Code answers related to "check php version in windows"

Browse Popular Code Answers by Language