ম্যাজিক মেথডস
গেট মেথড
public function __get($property)
{
if (property_exists($this, $property)) {
return $this->$property;
}
}$tweet = new Tweet();
echo $tweet->username; // এটি username প্রোপার্টিটি রিটার্ন করবে, এমনকি প্রাইভেট প্রোপার্টি হলেও।সেট মেথড
public function __set($property, $value)
{
if (property_exists($this, $property)) {
$this->$property = $value;
}
}ইজসেট মেথড
আনসেট মেথড
কল মেথড
Last updated