Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
semantic
/
issue146197.php
blob: 136251c93446809e6a2c604de438ba815710861e [
file
] [
log
] [
blame
]
<?
php
class
BlaBla
{
private
$count
=
array
();
//see this line
function
count
()
{
self
::
$count
=
10
;
self
::
$count
[
0
]
=
10
;
}
}
?>