当前位置: 首页>>代码示例>>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;未经允许,请勿转载。