当前位置: 首页>>代码示例>>PHP>>正文


PHP ARC2_Class::__construct方法代码示例

本文整理汇总了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();
 }
开发者ID:WebOrganics,项目名称:TransFormr,代码行数:13,代码来源:ARC2_RDFTranformrPlugin.php

示例2:

 function __construct($a, &$caller)
 {
     parent::__construct($a, $caller);
 }
开发者ID:mk-smart,项目名称:datahub-rdf-catalogue,代码行数:4,代码来源:ARC2_Graph.php

示例3:

 function __construct($a = '', &$caller)
 {
     /* caller is a store */
     parent::__construct($a, $caller);
 }
开发者ID:anukat2015,项目名称:smob,代码行数:5,代码来源:ARC2_FoafLoadTrigger.php

示例4:

 function __construct($a, &$caller)
 {
     parent::__construct($a, $caller);
     $this->is_remote = 1;
 }
开发者ID:GettyScholarsWorkspace,项目名称:GettyScholarsWorkspace,代码行数:5,代码来源:ARC2_RemoteStore.php

示例5:

 function __construct($a, &$caller, &$data_store)
 {
     /* caller has to be a store */
     parent::__construct($a, $caller);
     $this->data_store = $data_store;
 }
开发者ID:ilovenetwork,项目名称:Tools,代码行数:6,代码来源:ARC2_TestHandler.php


注:本文中的ARC2_Class::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。