search
HomeBackend DevelopmentPHP Tutorial Mysql数据库导出替Excel(ODBC驱动)

Mysql数据库导出为Excel(ODBC驱动)

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php date_default_timezone_set('Asia/Shanghai');
        /*
     *@author:jinger7281@gmail.com
     *在本程序不侵犯任何公司或个人权利的情况下:
     *本程序遵循GPL v2许可证分发,详情查看http://www.gnu.org/copyleft/lesser.html
     *如果本程序已经使用他人专利,本程序将按照专利持有人许可进行使用
     *如果本程序侵犯了您的专利,请及时联系作者(上方邮箱即可),本人及时会做出更正声明,如有不便敬请谅解。
     *本类实现:
     *只要填写正确的mysql数据库、表信息自动将Mysql数据库的内容导出为Excel文件,一键完成,需要ODBC的支持,此为Windows版本
     *注意:填写的时候Excel文件只需要填写文件名即可,导出Excel为是2003版本。
     *          因为本人水平有限,必须按照示例程序的样本填写完毕方可顺利执行
     *          本版本中存在已知瑕疵:
     *          1、Mysql数据库出错会输出错误信息。Release版本请自行删除保证服务器信息安全
     *          2、odbc连接部分没有做出错误处理,Release版本请自行添加错误处理部分(mysql一样)
    */
    class mysql2Xls{
        private $currDir;        //当前目录名使用dirname(__FILE__)获取
        private $srcData;    //Mysql获取的数据数组,此为2维数组
        private $srcColumn;    //Mysql数据库的列名,为了将列名对应到Excel文件中的第一行,此属性为1维数组
        public $xlsName;            //Excel文件的文件名,不需要添加后缀,后缀是自动添加的,如果需要设置后缀,请在setXlsName函数中更改后缀
        private $host;                //本行一下五行为Mysql的连接设置
        private $userName;
        private $pwd;
        private $dbName;
        private $tbName;
        
        public function __construct(){
            $this->currDir = dirname(__FILE__);
        }
        
        /* 获取Mysql的列名称 */
        public function getSrcColumn(){
            $handle = @mysql_connect($this->host,$this->username,$this->pwd);
            $this->srcColumn = array();
            if(is_bool($handle)){
                echo "====**====<br>";
                echo "Mysql连接出错.<br>文件:".(__FILE__)." <br>行号:".(__LINE__)."<br>错误:".mysql_error();
                echo "<br>====**====<br>";
                exit(0);
            }
            $ret = @mysql_select_db($this->dbName,$handle);
            if($handle == FALSE){
                echo "====**====<br>";
                echo "Mysql选择数据库出错.<br>文件:".(__FILE__)." <br>行号:".(__LINE__)."<br>错误:".mysql_error();
                echo "<br>====**====<br>";
                exit(0);
            }
            $ret = @mysql_query('describe '.$this->tbName,$handle);
            if(is_bool($ret)){
                echo "====**====<br>";
                echo "Mysql语句执行出错.<br>文件:".(__FILE__)." <br>行号:".(__LINE__)."<br>错误:".mysql_error();
                echo "<br>====**====<br>";
                exit(0);
            }
            while(($data = mysql_fetch_array($ret)) != FALSE){
                array_push($this->srcColumn,$data['Field']);
            }
            mysql_free_result($ret);
            mysql_close($handle);
            return $this->srcColumn;
        }
        
        /* 获取指定的Mysql数据库表中的内容 */
        public function getSrcData(){
            $handle = @mysql_connect($this->host,$this->username,$this->pwd);
            $this->srcData = array();
            if(is_bool($handle)){
                echo "====**====<br>";
                echo "Mysql连接出错.<br>文件:".(__FILE__)." <br>行号:".(__LINE__)."<br>错误:".mysql_error();
                echo "<br>====**====<br>";
                exit(0);
            }
            $ret = @mysql_select_db($this->dbName,$handle);
            if($handle == FALSE){
                echo "====**====<br>";
                echo "Mysql选择数据库出错.<br>文件:".(__FILE__)." <br>行号:".(__LINE__)."<br>错误:".mysql_error();
                echo "<br>====**====<br>";
                exit(0);
            }
            $ret = @mysql_query('select * from '.$this->tbName,$handle);
            if(is_bool($ret)){
                echo "====**====<br>";
                echo "Mysql语句执行出错.<br>文件:".(__FILE__)." <br>行号:".(__LINE__)."<br>错误:".mysql_error();
                echo "<br>====**====<br>";
                exit(0);
            }
            while(($data = mysql_fetch_array($ret)) != FALSE){
                array_push($this->srcData,$data);
            }
            mysql_free_result($ret);
            mysql_close($handle);
            return $this->srcData;
        }
        
        /* 主力部分 将Mysql数据库中的内容导出为Excel文件 */
        public function m2Xls(){
            $handle = odbc_connect("Driver={MicroSoft Excel Driver (*.xls)};READONLY=false;CREATE_DB=\"".$this->xlsName."\";Dbq=".$this->xlsName,"","");
            $sql = 'create table '.$this->tbName.'(';
            foreach($this->srcColumn as $value){
                $sql .= ($value." text,");
            }
            $sql = substr($sql,0,strlen($sql)-1);
            $sql .= ")";
            $ret = odbc_exec($handle,$sql);
            //以上内容是创建一个Excel文件 并将Mysql的列转移到Excel文件中去。
            foreach($this->srcData as $value){
                $sql = 'insert into ['.$this->tbName.'$] values(';
                for($i=0;$i<count .="iconv("UTF-8","GB2312","'".$value[$i]."',");" substr echo odbc_exec public function setmysqlargs>host = $host;
            $this->username = $username;
            $this->pwd = $pwd;
            $this->dbName = $dbName;
            $this->tbName = $tbName;
        }
        
        /* 设置Excel数据库的名称 */
        public function setXlsName($xlsName){
            $this->xlsName = $this->currDir."\\".$xlsName.".xls";
            return $this->xlsName;
        }
    }
        /*以下部分是测试功能的,可删除*/
    header("Content-Type:text/html;charset=UTF-8");
    $mysql2xls = new mysql2Xls();
    $mysql2xls->setMysqlArgs('localhost','root','******','others','zhuifeng');
    $mysql2xls->setXlsName('test');
    $mysql2xls->getSrcColumn();
    $mysql2xls->getSrcData(); 
    $mysql2xls->m2Xls();
?>

 <div class="clear">
                 
              
              
        
            </div></count>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),