实例:
首先建立 mysql的配置文件 dbconfig.php
<?php $phpexcel=array( "host"=>‘localhost‘,//127.0.0.1 "username"=>"root",//用户名 "password"=>"123",//密码 "database"=>"PHPExcel",//数据库名 "charset"=>"utf8"//编码 ); ?>
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; } ?>
读取数据并输出本地文件
<?php
?>
时间: 2024-11-07 16:45:35