Last active
December 18, 2015 11:18
-
-
Save frankyston/5774398 to your computer and use it in GitHub Desktop.
Mostrando como funciona o __set em intercepções em php.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class Pessoa | |
* Exemplo de como funciona o __set em intercepções em php | |
* autor: Frankyston Lins Nogueira | |
*/ | |
class Pessoa | |
{ | |
private $nome; | |
private $idade; | |
private $sexo; | |
public function __set($name, $value) { | |
$this->$name = $value; | |
} | |
public function __get($name) { | |
return $this->$name; | |
} | |
} | |
/** | |
* Exemplo usando a classe Pessoa | |
*/ | |
$joao = new Pessoa(); | |
$joao->idade = 20; | |
echo $joao->idade; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment