blob: 8e8a773451c75fb14d4f5f242d728939511d8286 [file] [log] [blame]
<?php
class BlaBla {
private $count = array();//see this line
function count() {
$this->count[0]="huh";
echo $this->count[0];
}
}
?>