Sign in
apache
/
netbeans
/
3f277361c3bdd1d5120c7a7654e8acb61994283a
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
formatting
/
issue227287.php
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
,
);
}
}
?>