本文整理汇总了PHP中CWebModule::__get方法的典型用法代码示例。如果您正苦于以下问题:PHP CWebModule::__get方法的具体用法?PHP CWebModule::__get怎么用?PHP CWebModule::__get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CWebModule
的用法示例。
在下文中一共展示了CWebModule::__get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __get
/**
* Implements support for getting URLs, Tables and Views
* @param string $name
*/
public function __get($name)
{
if (substr($name, -3) === 'Url') {
if (isset($this->_urls[substr($name, 0, -3)])) {
return Yum::route($this->_urls[substr($name, 0, -3)]);
}
}
if (substr($name, -4) === 'View') {
if (isset($this->_views[substr($name, 0, -4)])) {
return $this->_views[substr($name, 0, -4)];
}
}
if (substr($name, -5) === 'Table') {
if (isset($this->_tables[substr($name, 0, -5)])) {
return $this->_tables[substr($name, 0, -5)];
}
}
return parent::__get($name);
}
示例2: __get
public function __get($name)
{
if (array_key_exists($name, $this->_config)) {
return $this->_config[$name];
} else {
return parent::__get($name);
}
}