Global and Local Scope


SUBMITTED BY: henry1874w

DATE: June 4, 2017, 7:47 p.m.

FORMAT: Text only

SIZE: 239 Bytes

HITS: 222

  1. <?php
  2. $x = 5; // global scope
  3. function myTest() {
  4. // using x inside this function will generate an error
  5. echo "<p>Variable x inside function is: $x</p>";
  6. }
  7. myTest();
  8. echo "<p>Variable x outside function is: $x</p>";
  9. ?>

comments powered by Disqus