當前位置: 首頁>>代碼示例>>PHP>>正文


PHP sfMixer::callMixins方法代碼示例

本文整理匯總了PHP中sfMixer::callMixins方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfMixer::callMixins方法的具體用法?PHP sfMixer::callMixins怎麽用?PHP sfMixer::callMixins使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sfMixer的用法示例。


在下文中一共展示了sfMixer::callMixins方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __call

 function __call($method, $arguments)
 {
     $r = "before __call\n";
     $r .= sfMixer::callMixins();
     $r .= "after __call\n";
     return $r;
 }
開發者ID:sensorsix,項目名稱:app,代碼行數:7,代碼來源:sfMixerTest.php

示例2: __call

 public function __call($name, $arguments)
 {
     if (strpos($name, 'get') === 0) {
         $key = strtolower(preg_replace('/^get/', '', $name, 1));
         return $this->storage->get($key);
         //todo allow backfetching?
     } elseif (strpos($name, 'set') === 0 && array_key_exists(0, $arguments)) {
         $key = strtolower(preg_replace('/^set/', '', $name, 1));
         return $this->storage->set($key, $arguments[0]);
         // forgot the return here
     } elseif (strpos($name, 'has') === 0) {
         $key = strtolower(preg_replace('/^has/', '', $name, 1));
         return $this->storage->has($key);
     }
     return sfMixer::callMixins();
     // We're going to need mixin support
 }
開發者ID:WIZARDISHUNGRY,項目名稱:sfDomFeedPlugin,代碼行數:17,代碼來源:sfDomStorage.class.php

示例3: __call

 /**
  * Hook for sfMixer
  */
 public function __call($a, $b)
 {
     return sfMixer::callMixins();
 }
開發者ID:valerio-bozzolan,項目名稱:openparlamento,代碼行數:7,代碼來源:sfSolrPager.class.php

示例4: __call

 /**
  * Adapts the ->getXXX() methods to solr.
  */
 public function __call($method, $args = array())
 {
     if (substr($method, 0, 3) == 'get') {
         return $this->result->__get($this->getProperty($method, 'get'));
     } elseif (substr($method, 0, 3) == 'has') {
         try {
             $this->result->__get($this->getProperty($method, 'has'));
             return true;
         } catch (Exception $e) {
             return false;
         }
     }
     $call = array($this->result, $method);
     if (is_callable($call)) {
         return call_user_func_array($call, $args);
     }
     return sfMixer::callMixins();
 }
開發者ID:valerio-bozzolan,項目名稱:openparlamento,代碼行數:21,代碼來源:sfSolrResult.class.php


注:本文中的sfMixer::callMixins方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。