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


PHP dbeav_model::__construct方法代码示例

本文整理汇总了PHP中dbeav_model::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP dbeav_model::__construct方法的具体用法?PHP dbeav_model::__construct怎么用?PHP dbeav_model::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在dbeav_model的用法示例。


在下文中一共展示了dbeav_model::__construct方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct(&$app)
 {
     $this->app = $app;
     parent::__construct($app);
     parent::delete(array('product_id' => 0));
     //临时处理  莫名出现空数据 未查到原因
 }
开发者ID:syjzwjj,项目名称:quyeba,代码行数:7,代码来源:ref.php

示例2:

 function __construct($app)
 {
     parent::__construct($app);
     $db = app::get('system')->database();
     $db->exec('set SESSION autocommit=1;');
     $db->exec('set @msgID = -1;');
 }
开发者ID:453111208,项目名称:bbc,代码行数:7,代码来源:mysql.php

示例3: __construct

 public function __construct($app)
 {
     parent::__construct($app);
     $this->use_meta();
     // foreach($this->getList() as $item){
     //     $item['ordernum'] = 30;
     //     $this->save($item);
     // }
 }
开发者ID:yindonghai,项目名称:msk.com,代码行数:9,代码来源:brand.php

示例4: __construct

 public function __construct($app)
 {
     parent::__construct($app);
     $this->dir = $this->dir_name();
 }
开发者ID:sss201413,项目名称:ecstore,代码行数:5,代码来源:xhprof.php

示例5:

 function __construct($app)
 {
     parent::__construct($app);
     //使用meta系统进行存储
     $this->use_meta();
 }
开发者ID:syjzwjj,项目名称:quyeba,代码行数:6,代码来源:tag.php

示例6:

 function __construct($app)
 {
     parent::__construct($app);
 }
开发者ID:sss201413,项目名称:ecstore,代码行数:4,代码来源:rate.php

示例7:

 function __construct(&$app)
 {
     parent::__construct($app);
     $this->oMath = kernel::single('ectools_math');
 }
开发者ID:dalinhuang,项目名称:shopexts,代码行数:5,代码来源:currency.php

示例8:

 function __construct(&$app)
 {
     $this->app = $app;
     parent::__construct($app);
 }
开发者ID:syjzwjj,项目名称:quyeba,代码行数:5,代码来源:msg.php

示例9: __construct

 /**
  * 构造方法
  * @param object model相应app的对象
  * @return null
  */
 public function __construct($app)
 {
     parent::__construct($app);
     $this->propValuesModel = app::get('sysspfb')->model('prop_values');
 }
开发者ID:453111208,项目名称:bbc,代码行数:10,代码来源:props.php

示例10: __construct

 /**
  * 构造方法
  * @param object model相应app的对象
  * @return null
  */
 public function __construct($app)
 {
     parent::__construct($app);
     $this->use_meta();
 }
开发者ID:noikiy,项目名称:snk,代码行数:10,代码来源:cat.php

示例11: array

 function __construct(&$app)
 {
     parent::__construct($app);
     $this->schema['columns']['status'] = array('type' => 'string');
 }
开发者ID:453111208,项目名称:bbc,代码行数:5,代码来源:item.php


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