<?php function init() { $a = 'a'; $b = 'b'; function test() { global $a,$b; var_dump($a, $b); } echo test(); } init();
You have javascript disabled. You will not be able to edit any code.