本文整理汇总了PHP中StringHelper::underscoreToCamelcase方法的典型用法代码示例。如果您正苦于以下问题:PHP StringHelper::underscoreToCamelcase方法的具体用法?PHP StringHelper::underscoreToCamelcase怎么用?PHP StringHelper::underscoreToCamelcase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringHelper
的用法示例。
在下文中一共展示了StringHelper::underscoreToCamelcase方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __set
public function __set($name, $val)
{
try {
return parent::__set($name, $val);
} catch (CException $e) {
$method_name = StringHelper::underscoreToCamelcase($name);
$method_name = 'set' . ucfirst($method_name);
if (method_exists($this, $method_name)) {
return $this->{$method_name}($val);
} else {
throw new CException($e->getMessage());
}
}
}
示例2: __get
public function __get($name)
{
try {
return parent::__get($name);
} catch (CException $e) {
$method_name = StringHelper::underscoreToCamelcase($name);
if (method_exists($this, 'get' . ucfirst($method_name))) {
return $this->{$method_name};
} else {
$attr = StringHelper::camelCaseToUnderscore($name);
if (mb_substr($attr, 0, 4) == 'get_') {
$attr = mb_substr($attr, 4);
}
$attr = get_class($this) . '.' . $attr;
throw new CException('Не определено свойство ' . $attr);
}
}
}