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


PHP Proxy::__construct方法代碼示例

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


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

示例1: __construct

 /**
  * Constructor
  * @param string[] $serverConfigPrefixes array containing the config Prefixes
  */
 public function __construct($serverConfigPrefixes, ILDAPWrapper $ldap)
 {
     parent::__construct($ldap);
     foreach ($serverConfigPrefixes as $configPrefix) {
         $this->backends[$configPrefix] = new \OCA\User_LDAP\Group_LDAP($this->getAccess($configPrefix));
         if (is_null($this->refBackend)) {
             $this->refBackend =& $this->backends[$configPrefix];
         }
     }
 }
開發者ID:rchicoli,項目名稱:owncloud-core,代碼行數:14,代碼來源:Group_Proxy.php

示例2:

 function __construct($storage, $cacheFile)
 {
     parent::__construct($storage);
     $this->cache = $this->readCache($cacheFile);
     $this->ends = str_repeat("", $this->getCharSize() + 1);
 }
開發者ID:REZ1DENT3,項目名稱:morphy,代碼行數:6,代碼來源:WithHeader.php

示例3: __construct

 public function __construct()
 {
     parent::__construct(self::NAME, new ArrayObject());
     $this->users =& $this->data;
 }
開發者ID:skyview059,項目名稱:puremvc-php-demo-gtk-employeeadmin,代碼行數:5,代碼來源:UserProxy.php

示例4: __construct

 public function __construct($url = '')
 {
     $this->url = $url;
     $this->filters = array();
     $this->simple = false;
     parent::__construct($this, '');
 }
開發者ID:iwillhappy1314,項目名稱:laravel-admin,代碼行數:7,代碼來源:Client.php

示例5: __construct

 public function __construct($proxy, $type = self::HTTP)
 {
     parent::__construct($proxy, $type);
     $this->initCookiePath();
 }
開發者ID:netbox,項目名稱:proxy-manager,代碼行數:5,代碼來源:CookieProxy.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
 }
開發者ID:corner82,項目名稱:Slim_Proxy_SanalFabrika,代碼行數:4,代碼來源:SlimTestProxy.php

示例7: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct(ModelTestProxy::NAME, '');
 }
開發者ID:xojunzheng,項目名稱:puremvc-php-multicore-framework,代碼行數:7,代碼來源:ModelTestProxy.php

示例8: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct(ApplicationDataProxy::NAME, new ApplicationDataVO());
 }
開發者ID:xojunzheng,項目名稱:puremvc-php-standard-framework,代碼行數:7,代碼來源:ApplicationDataProxy.php

示例9:

 function __construct($host, $path)
 {
     parent::__construct($host, $path);
 }
開發者ID:billingham,項目名稱:tirkapp,代碼行數:4,代碼來源:proxy.php


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