php __set example
Example 1: php magic methods
__construct(),
__destruct(),
__call(),
__callStatic(),
__get(),
__set(),
__isset(),
__unset(),
__sleep(),
__wakeup(),
__serialize(),
__unserialize(),
__toString(),
__invoke(),
__set_state(),
__clone(),
__debugInfo()
Example 2: magic method get php
<?php
class Person{
private $firstName;
public function __get($propertyName){
echo "attempted to read non-existing property: $propertyName
";
}
public function __set($propertyNane, $propertyValue){
echo "attempted to write to non-existing property: $propertyNane
";
}
}
$p = new Person();
$p->firstName = 'Doe';
echo $p->firstName;
$p->lastName = 'John';
echo $p->lastName;