<?php class word{ private $text; public function __construct($word){ $this->text=$word; } public function setWord($word){ $this->text=$word; } public function getWord() { return $this->text; } } $class_words = array(); $word = new word("this"); $class_words[] = $word->getWord(); $word->setWord("that"); $class_words[] = $word->getWord(); print_r($class_words); exit;
You have javascript disabled. You will not be able to edit any code.