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


PHP database::__construct方法代码示例

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


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

示例1:

 function __construct()
 {
     parent::__construct('sakila');
     //parse ini file to get key to Google geocoder API
     $parameters = parse_ini_file('../config/geocode.ini');
     $this->geoKey = $parameters['geoKey'];
 }
开发者ID:bbutlerfrog,项目名称:benfrogs-pad,代码行数:7,代码来源:geoCode.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     parent::connect();
     // debug
     //parent::dump();
 }
开发者ID:robertbanh,项目名称:mrmilestone,代码行数:7,代码来源:dbFacade.php

示例3:

 function __construct()
 {
     parent::__construct();
     $this->table_sale = 'sale';
     $this->table_sale_product = 'sale_product';
     $this->table_profitloss = 'accounts_profitloss';
 }
开发者ID:TheHanif,项目名称:POS-10,代码行数:7,代码来源:class.dashboard.php

示例4: mysqli

 function __construct($db_name, $db_user, $db_pass, $db_host, $db_pre)
 {
     parent::__construct($db_name, $db_user, $db_pass, $db_host, $db_pre);
     $this->db = new mysqli($db_host, $db_user, $db_pass, $db_name);
     if (!$this->db->select_db($db_name)) {
         $this->db = false;
     }
 }
开发者ID:biggtfish,项目名称:Sandbox,代码行数:8,代码来源:mysqli.php

示例5: array

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'packages';
     // Posible status for package
     $this->packages_status = array();
     $this->packages_status['active'] = 'Active';
     $this->packages_status['deactive'] = 'Deactive';
 }
开发者ID:qundeel,项目名称:Restaurant-app,代码行数:9,代码来源:class.package.php

示例6:

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'accounts';
     $this->general_ledger = 'accounts_general_ledger';
     $this->sales = 'accounts_sales';
     $this->profitloss = 'accounts_profitloss';
     $this->payable_receviable = 'accounts_payable_receviable';
     $this->purchases = 'accounts_purchases';
     $this->reconcilation = 'account_reconcilation';
 }
开发者ID:TheHanif,项目名称:POS-Faizan,代码行数:11,代码来源:class.accounts.php

示例7:

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'inventory';
 }
开发者ID:TheHanif,项目名称:POS,代码行数:5,代码来源:class.inventory.php

示例8:

 function __construct()
 {
     parent::__construct();
     $this->table_company = 'companies';
 }
开发者ID:qundeel,项目名称:Restaurant-app,代码行数:5,代码来源:class.header.php

示例9:

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'branch_user_roles';
     $this->table_branch = 'branches';
 }
开发者ID:qundeel,项目名称:Restaurant-app,代码行数:6,代码来源:class.branch_user_role.php

示例10:

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'supplier';
     $this->bills = 'bills';
 }
开发者ID:TheHanif,项目名称:POS-Faizan,代码行数:6,代码来源:class.supplier.php

示例11:

 function __construct($searchParams)
 {
     parent::__construct('employees');
     $this->searchParams = $searchParams;
 }
开发者ID:bbutlerfrog,项目名称:benfrogs-pad,代码行数:5,代码来源:search.php

示例12:

 function __construct($host, $username, $password, $dbname)
 {
     parent::__construct($host, $username, $password, $dbname);
 }
开发者ID:essamamdani,项目名称:aslamClass,代码行数:4,代码来源:index.php

示例13:

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'banks';
     $this->transection = 'banks_transection';
 }
开发者ID:TheHanif,项目名称:POS-Faizan,代码行数:6,代码来源:class.bank.php

示例14:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:TheHanif,项目名称:POS-Faizan,代码行数:4,代码来源:class.terminal.php

示例15:

 function __construct()
 {
     parent::__construct();
     $this->table_name = 'movies';
     $this->table_showtime = 'showtimes';
 }
开发者ID:qundeel,项目名称:Restaurant-app,代码行数:6,代码来源:class.movie.php


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