• PHP Video Tutorials

PHP - Local Variables



Scope can be defined as the range of availability a variable has to the program in which it is declared. PHP variables can be one of four scope types −

  • Local Variables
  • Global Variables
  • Static Variables
  • Function Parameters

Local Variables

A variable declared in a function is considered local; that is, it can be referenced solely in that function. Any assignment outside of that function will be considered to be an entirely different variable from the one contained in the function −

<?php
   $x = 4;
   
   function assignx () { 
      $x = 0;
      print "\$x inside function is $x. \n";
   }
   
   assignx();
   print "\$x outside of function is $x. \n";
?>

This will produce the following result −

$x inside function is 0. 
$x outside of function is 4. 
Advertisements