本文整理汇总了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];
}
}
}
示例2:
function __construct($storage, $cacheFile)
{
parent::__construct($storage);
$this->cache = $this->readCache($cacheFile);
$this->ends = str_repeat("", $this->getCharSize() + 1);
}
示例3: __construct
public function __construct()
{
parent::__construct(self::NAME, new ArrayObject());
$this->users =& $this->data;
}
示例4: __construct
public function __construct($url = '')
{
$this->url = $url;
$this->filters = array();
$this->simple = false;
parent::__construct($this, '');
}
示例5: __construct
public function __construct($proxy, $type = self::HTTP)
{
parent::__construct($proxy, $type);
$this->initCookiePath();
}
示例6: __construct
public function __construct()
{
parent::__construct();
}
示例7: __construct
/**
* Constructor
*/
public function __construct()
{
parent::__construct(ModelTestProxy::NAME, '');
}
示例8: __construct
/**
* Constructor
*/
public function __construct()
{
parent::__construct(ApplicationDataProxy::NAME, new ApplicationDataVO());
}
示例9:
function __construct($host, $path)
{
parent::__construct($host, $path);
}