fork download
  1. <?php
  2.  
  3. $age=array("Peter"=>&$ageVal);// Has to come first, since it's inside an include file.
  4.  
  5. $ageVal = 35; //Comes later.
  6.  
  7. echo "Peter is " . $age['Peter'] . " years old.";
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Peter is 35 years old.