Get a property’s value
Parameters
$name
stringrequired- Property name.
Source
public function __get($name) {
if (isset($this->options[$name])) {
return $this->options[$name];
}
return null;
}
Get a property’s value
$name
stringrequiredpublic function __get($name) {
if (isset($this->options[$name])) {
return $this->options[$name];
}
return null;
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.