ho implementato nell classe Item il metodo __toString():
Codice PHP:class Item{
private $key;
private $value;
public function getValue(){
return this->value;
}
// default method when non method is called !
public function __toString(){
return this->value;
}
}
// es:
$objItem = new Item
echo $objItem;
// è la stessa cosa di
echo $objItem->getValue();
![]()

Rispondi quotando