[ create a new paste ] login | about

Link: http://codepad.org/f9kjUQNg    [ raw code | fork ]

upwhere - PHP, pasted on Jan 18:
1
2
3
4
5
6
7
8
9
10
<?php
$a = 1; /* global scope */ 

function test()
{ 
    echo $a; /* reference to local scope variable */ 
} 

test();
?>


Output:
No errors or program output.


Create a new paste based on this one


Comments: