blob: 72e3e28d34c41d2e917ee3d42affb8b85b86c012 [file] [log] [blame]
<?php
static $a = array(// outside any function, class, etc, scope
1,
2,
3,
);
class a {
static $a = array(
1,
2,
3,
);
function b() {
static $a = array(
1,
2,
3,
);
}
}
?>