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


PHP mysql::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($params, $slave_params)
 {
     parent::__construct($params);
     $this->params = $slave_params[array_rand($slave_params)];
     $this->params['dbname'] = $params['dbname'];
     $this->params['prefix'] = $params['prefix'];
 }
开发者ID:rainbow88,项目名称:hummel,代码行数:7,代码来源:mysql_slave.class.php

示例2: __construct

	/**
	 * [__construct description]
	 * @param string
	 */
	public function __construct(rifCore $rifCore, $model){
		$this->model = $model;
		$this->lng = $rifCore->core['lng'];
		parent::__construct($rifCore);
		$this->getModelClassAnnotations();
		$this->pdoHelper = new pdoHelper($this->lng);		
		$this->config = $rifCore->core['config'];
	}
开发者ID:elribonazo,项目名称:riframework,代码行数:12,代码来源:rifModel.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     if (session_status() == PHP_SESSION_NONE) {
         session_start();
     }
     $this->basePath = dirname(__FILE__);
     $this->rootPath = dirname(dirname(__FILE__));
 }
开发者ID:TinoChow9792,项目名称:CodeTogether,代码行数:9,代码来源:user.php

示例4: __construct

 /**
  * __construct function.
  *
  * @access public
  * @param mixed $course_id
  * @return void
  */
 public function __construct($group_id = null)
 {
     parent::__construct();
     $this->basePath = dirname(__FILE__);
     //Individual Course
     if (!is_null($group_id)) {
         //$this->info = $this->assignmentInfo($assignment_id);
         $this->group_id = $group_id;
     }
 }
开发者ID:TinoChow9792,项目名称:CodeTogether,代码行数:17,代码来源:chat.php

示例5: __construct

 public function __construct($file = null)
 {
     parent::__construct();
     $this->basePath = dirname(dirname(dirname(__FILE__)));
     $this->user = user::authService();
     if (!is_null($file)) {
         $this->file = $file;
     }
     $this->questionPath = $this->basePath . "/" . $this->masterFolder . "/questions/";
 }
开发者ID:TinoChow9792,项目名称:CodeTogether,代码行数:10,代码来源:file.php

示例6: __construct

 public function __construct($course_id = null)
 {
     parent::__construct();
     $this->basePath = dirname(__FILE__);
     //user::authService() = user::authService();
     //Individual Course
     if (!is_null($course_id)) {
         $this->course_id = $course_id;
         $this->info = $this->courseInfo($course_id);
     }
 }
开发者ID:TinoChow9792,项目名称:CodeTogether,代码行数:11,代码来源:course.php

示例7: mysql

<?php
include_once("common.php");
$connectSql=new mysql();
$connectSql->__header();
$connectSql->__construct();


$newsid=$_REQUEST['newsid'];
$sql="DELETE FROM news WHERE newsid = ".$newsid."";

$result=$connectSql->query($sql);
if(!$result)
{
	echo json_encode("error");
	die('Error'.mysql_error());
}else
{
	echo json_encode("success");
}

$connectSql->dbClose();
?>
开发者ID:qianjune,项目名称:jikexueyuan_homework,代码行数:22,代码来源:del.php

示例8: __construct

 /**
  * __construct function.
  *
  * @access public
  * @param mixed $assignment_id
  * @return void
  */
 public function __construct($assignment_id)
 {
     parent::__construct();
     $this->basePath = dirname(__FILE__);
     $this->assignment_id = $assignment_id;
 }
开发者ID:TinoChow9792,项目名称:CodeTogether,代码行数:13,代码来源:testcase.php

示例9:

 function __construct($table)
 {
     parent::__construct();
     $this->setTable($table);
 }
开发者ID:PapaKot,项目名称:Horowitz,代码行数:5,代码来源:mysqlTable.php

示例10:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:exiaohao,项目名称:SimplyFramework,代码行数:4,代码来源:core.php


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