时间:2021-07-01 10:21:17 帮助过:2人阅读
php操作mysql文件
<?php require dirname(__FILE__)."/dbconfig.php";//引入配置文件 class db(//mysql操作类 public $conn=null;//初始化 public function _construct($config){ //连接数据库 $this->conn=mysql_connect($config["host"],$config["username"],$config["passwork"]or die(mysql_error));//连接数据库 mysql_select_db($config["database"],$this->conn)or die(mysql_error));//选择数据库 mysql_query("set names",$config["charset"]or die(mysql_error());//设定mysql编码 } /** **根据传入的sql语句 查询mysql结果集 **/ public function getResult($sql){ $resource=mysql_query($sql,$this->conn)or die(mysql_error());//查询SQL语句 $res=array(); while(($row=mysql_fetch_assoc($resource))!=false){ $res[]=$row; } return $res; } ?>View Code
读取数据并输出本地文件
<?php
?>
mysql配置文件编写
标签: