本文整理汇总了PHP中ARC2_Class::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP ARC2_Class::__construct方法的具体用法?PHP ARC2_Class::__construct怎么用?PHP ARC2_Class::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ARC2_Class
的用法示例。
在下文中一共展示了ARC2_Class::__construct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function __construct($a = '', &$caller)
{
parent::__construct($a, $caller);
$this->use_store = $a['use_store'];
$this->store_size = $a['store_size'];
$this->reset_tables = $a['reset_tables'];
$this->path = $a['store_root'];
$this->dump_location = $a['dump_location'];
$this->type = $a['document_type'];
$this->backup_type = $a['backup_type'];
$this->ext = $a['extension'];
$this->a['ns'] = $this->loadPrefixes();
}
示例2:
function __construct($a, &$caller)
{
parent::__construct($a, $caller);
}
示例3:
function __construct($a = '', &$caller)
{
/* caller is a store */
parent::__construct($a, $caller);
}
示例4:
function __construct($a, &$caller)
{
parent::__construct($a, $caller);
$this->is_remote = 1;
}
示例5:
function __construct($a, &$caller, &$data_store)
{
/* caller has to be a store */
parent::__construct($a, $caller);
$this->data_store = $data_store;
}