in che senso?

intendi cosi?

codice:
class Pippo {
 
  var $variabile = array();

  function pippo() {

     $this->variabile[] = 'test';
     $this->variabile[] = 'test2';

     print_r($this->variabile);

  }

}
ciao