*Grmbl*
class myclass{
var $myarray = array();
var $counter;
function init($text){
$this->myarray[] = $text;
$this->counter=(count($this->myarray)-1);
}
}
$c=new myclass;
$c->init("foo");
$c->init("bar");
echo $c->counter; // sollte jetzt 1 ergeben.
immer diese tippfehler :)
sorry