Current File : /home/itiffy/www/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/global_static_variables.test
Global and static variables
-----
<?php

global $a, $$a, ${$a[$a]};
static $a, $b;
static $a = 'foo', $b = 'bar';
-----
global $a, ${$a}, ${$a[$a]};
static $a, $b;
static $a = 'foo', $b = 'bar';