Método setter y getter al mismo tiempo.


/ Published in: PHP
Save to your folder(s)

# Método setter y getter

Hace mucho tiempo usaba esta manera para tener un solo método que sea getter y setter al mismo tiempo.


Copy this code and paste it in your HTML
  1. <?php
  2. class Objeto
  3. {
  4. private $atributo;
  5.  
  6. public function atributo($value = null)
  7. {
  8. if(null != $value)
  9. {
  10. $this->atributo = $value;
  11. }
  12. return $this->atributo;
  13. }
  14. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.