[ create a new paste ] login | about

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

PHP, pasted on May 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

function encapsulation() {

$a=1;

function showA()
{
    global $a;
    var_export($a);
};

showA();

};

encapsulation();

?>


Output:
1
NULL


Create a new paste based on this one


Comments: