Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
semantic
/
issue146193.php
blob: 8e8a773451c75fb14d4f5f242d728939511d8286 [
file
] [
log
] [
blame
]
<?
php
class
BlaBla
{
private
$count
=
array
();
//see this line
function
count
()
{
$this
->
count
[
0
]=
"huh"
;
echo $this
->
count
[
0
];
}
}
?>