Home php教程 php手册 php生成与读取excel文件(.csv)实例

php生成与读取excel文件(.csv)实例

May 25, 2016 pm 04:45 PM

这里我们是介绍利用php的fgetcsv函数直接来读取.csv文件了,并不是真正的excel文件,如果要读取真正的excel文件我们需要使用插件了,下面我会简单介绍一下.

excel文件(.csv),代码如下:

<?php   
	function getCSVdata($filename)   
	{   
	    $row = 1;//第一行开始   
	    if(($handle = fopen($filename, "r")) !== false)    
	    {   
	        while(($dataSrc = fgetcsv($handle)) !== false)    
	        {   
	            $num = count($dataSrc);   
	            for ($c=0; $c < $num; $c++)//列 column    
	            {   
	                if($row === 1)//第一行作为字段    
	                {   
	                    $dataName[] = $dataSrc[$c];//字段名称   
	                }   
	                else   
	                {   
	                    foreach ($dataName as $k=>$v)   
	                    {   
	                        if($k == $c)//对应的字段   
	                        {   
	                            $data[$v] = $dataSrc[$c];   
	                        }   
	                    }   
	                }   
	            }   
	            if(!emptyempty($data))   
	            {   
	                 $dataRtn[] = $data;   
	                 unset($data);   
	            }   
	            $row++;   
	        }   
	        fclose($handle);   
	        return $dataRtn;   
	    }   
	}   
	   
	$aData = getCSVdata(&#39;all_.csv&#39;);   
	 
	foreach ($aData as $k=>$v ){ 
	echo "http://".$v[&#39;a&#39;]."<br>"; 
	} 
	   
Copy after login

生成excel文件(csv),代码如下:

<?php 
	header("Content-type:application/vnd.ms-excel"); 
	header("Content-Disposition:attachment;filename=test_data.xls"); 
	//输出内容如下:  
	echo   "姓名"."t";  
	echo   "年龄"."t";  
	echo   "学历"."t";  
	echo   "n";  
	echo   "张三"."t";  
	echo   "25"."t";  
	echo   "本科"."t";  
	 
Copy after login

上面只是简单的一些excel文件操作,如果说进行如编辑,修改,删除行表格操作我们可使用phpexcel插件来操作excel文件了.

教程地址:

欢迎转载!但请带上文章地址^^

Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)