Get a property’s value
Parameters
$namestringrequired- Property name.
Source
public function __get($name) {
if (isset($this->options[$name])) {
return $this->options[$name];
}
return null;
}
Get a property’s value
$namestringrequiredpublic 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.