当前位置: 首页>>代码示例>>PHP>>正文


PHP CComponent::__set方法代码示例

本文整理汇总了PHP中CComponent::__set方法的典型用法代码示例。如果您正苦于以下问题:PHP CComponent::__set方法的具体用法?PHP CComponent::__set怎么用?PHP CComponent::__set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CComponent的用法示例。


在下文中一共展示了CComponent::__set方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __set

 /**
  * Any requests to set or get attributes or call methods on this class that 
  * are not found are redirected to the {@link Swift_Mime_Message} object.
  * @param string the attribute name
  */
 public function __set($name, $value)
 {
     try {
         return parent::__set($name, $value);
     } catch (CException $e) {
         $setter = 'set' . $name;
         if (method_exists($this->message, $setter)) {
             $this->message->{$setter}($value);
         } else {
             throw $e;
         }
     }
 }
开发者ID:nganhtuan63,项目名称:gxc-cms,代码行数:18,代码来源:YiiMailMessage.php

示例2: __set

 public function __set($name, $val)
 {
     try {
         return parent::__set($name, $val);
     } catch (CException $e) {
         $method_name = Yii::app()->text->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());
         }
     }
 }
开发者ID:blindest,项目名称:Yii-CMS-2.0,代码行数:14,代码来源:Component.php

示例3: __set

 public function __set($name, $value)
 {
     $setter = 'set' . $name;
     if (false !== method_exists($this, $setter)) {
         return call_user_func_array(array($this, $setter), array($value));
     } else {
         if (false !== property_exists($this, $name)) {
             return $this->{$name} = $value;
         } else {
             if (false !== $this->getIsProxy() && false !== method_exists($this->_instance, $setter)) {
                 return call_user_func_array(array($this->_instance, $setter), array($value));
             } else {
                 if (false !== $this->getIsProxy() && false !== property_exists($this->_instance, $name)) {
                     return $this->_instance->{$name} = $value;
                 }
             }
         }
     }
     return parent::__set($name, $value);
 }
开发者ID:aakbar24,项目名称:CollegeCorner_Ver_2.0,代码行数:20,代码来源:ProxyComponent.php

示例4: __set

 public function __set($strName, $mixValue)
 {
     switch ($strName) {
         case 'objCart':
             $this->objCart = $mixValue;
             return;
         case 'CheckoutForm':
             $this->CheckoutForm = $mixValue;
             return;
         default:
             return parent::__set($strName, $mixValue);
     }
 }
开发者ID:hjlan,项目名称:webstore,代码行数:13,代码来源:WsExtension.php


注:本文中的CComponent::__set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。