Variable scope : Variable Scope : Language Basics PHP Source Code


PHP Source Code » Language Basics » Variable Scope »

 

Variable scope



<?php
  increment ();
  increment ();
  increment ();
  function increment () {
      $a=0;
      echo $a;
      $a++;
  }
?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Variable Scope