Answers for "php const scope"

PHP
0

php const scope

<?php
define("GREETING", "Welcome to W3Schools.com!");

function myTest() {
  echo GREETING;
}
 
myTest();
?>
Posted by: Guest on September-13-2020

Browse Popular Code Answers by Language