當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。