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


PHP MySQLi::init方法代码示例

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


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

示例1: empty

 function __construct($config)
 {
     mysqli_report(MYSQLI_REPORT_ERROR);
     $this->cfg = array_merge($this->cfg, $config);
     if (preg_match('#^(.*)?:(\\d+)?$#D', $this->cfg['host'], $match)) {
         $this->cfg['host'] = empty($match[1]) ? null : $match[1];
         $this->cfg['port'] = empty($match[2]) ? null : $match[2];
     }
     if (!$this->cfg['socket']) {
         $this->cfg['socket'] = null;
     }
     if (!is_int($this->cfg['flags'])) {
         $this->cfg['flags'] = null;
     }
     if (!is_array($this->cfg['options'])) {
         $this->cfg['options'] = array();
     }
     parent::init();
     foreach ($this->cfg['options'] as $option => $value) {
         if (!parent::options($option, $value)) {
             throw new Exception($this->error, $this->errno);
         }
     }
     $ssl =& $this->cfg['ssl'];
     if ($ssl['key'] || $ssl['cert'] || $ssl['ca'] || $ssl['capath'] || $ssl['cipher']) {
         # bugs.php.net/bug.php?id=51026 & bugs.php.net/bug.php?id=37620
         if (version_compare(phpversion(), '5.3.0', '>=') && version_compare(phpversion(), '5.3.3', '<')) {
             throw new Exception('MySQLi SSL not available due to PHP bug 51026');
         }
         parent::ssl_set($ssl['key'], $ssl['cert'], $ssl['ca'], $ssl['capath'], $ssl['cipher']);
     }
     $this->connect();
 }
开发者ID:cbsistem,项目名称:nexos,代码行数:33,代码来源:mysqli.php

示例2: init

 private function init()
 {
     $handle = new MySQLi();
     $handle->init();
     $handle->options(MYSQLI_OPT_CONNECT_TIMEOUT, 5);
     if (@$handle->real_connect(_DBMS_HOST, _DBMS_LOGIN, _DBMS_PASS, _DBMS_DB) === FALSE) {
         throw new DatabaseException($handle->connect_error);
     }
     if (!$handle->select_db(_DBMS_DB)) {
         throw new DatabaseException('Can\'t connect to Database !');
     }
     return $handle;
 }
开发者ID:Korko,项目名称:RiskOnline,代码行数:13,代码来源:MySQL_DBMS.php

示例3:

 function __construct()
 {
     parent::init();
 }
开发者ID:tomec-martin,项目名称:adminer,代码行数:4,代码来源:mysqlssl.inc.php


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