fork download
  1. <?php
  2.  
  3. $id = 1;
  4.  
  5.  
  6. function dato(){
  7. global $id;
  8. echo '<div>'.$id.'<div>';
  9. }
  10.  
  11.  
  12. echo dato();
Success #stdin #stdout 0.02s 82880KB
stdin
Standard input is empty
stdout
<div>1<div>