php 导入数据到excel
class CsvFieldDump {
var $headers;
var $fieldnum;
function CsvFieldDump($infile){
if(empty($infile)){
die("You must specify a csv file to readn");
}
if(!file_exists($infile)){
die("$infile doesn't exist!n");
}
$this->infile = $infile;
$this->fieldnum = $field;
$this->createFile=0;
return(true);
}
var $headers=array();
function dump_headers($dumptoscreen=1){
$this->fd=fopen($this->infile, "r") or die("Couldn't open csv file $file");
$count=0;
while($data = fgetcsv($this->fd, 1000, ",") ){
if(!$count){
if($dumptoscreen){
print_r($data);
}
$this->headers=$data;
}
$count=1;
}
return($this->headers);
}
function dump_column($num){
$this->fieldnum = $num;
$this->fd=fopen($this->infile, "r") or die("Couldn't open csv file $file");
$count=0;
while($data = fgetcsv($this->fd, 1000, ",")){
$array=array();
if(is_array($this->fieldnum)){
foreach($this->fieldnum as $num){
$array[]=$data[$num];
}
}else{
$array = array($data[$this->fieldnum]);
}
$this->write_line($array);
}
}
var $colname;
var $headers_flip;
function dump_column_by_name($name){
if(!isset($name)){
die("No field name specified");
}
$this->colname=$name;
$this->dump_headers(0);
$this->headers_flip = array_flip($this->headers);
if(is_array($this->colname)){
foreach($this->colname as $n){
$array[] = $this->headers_flip[$n];
}
}else{
$array[] = $this->headers_flip[$this->colname];
}
$this->dump_column($array);
}
function write_line($data){
$string="";
$num=count($data);
for($x=0;$x $string.=$data[$x];
if($x $string.=",";
}
}
echo $string."n";
}
}
/////////////////////// make it think its a c program :)
if(isset($argv[1])){
$filename = $argv[count($argv)-1];
if($argv[1] == "-h"){
render_help();
die();
}else{
$b=new CsvFieldDump($filename);
}
$x=0;
foreach($argv as $opt){
switch($opt) {
case "df":
case "-df" :
$number = $argv[$x+1];
if(strstr($number, ",")){
$numbers = explode(",",$number);
}else{
$numbers = $number;
}
$b->dump_column($numbers);
break;
case "-dn":
$number = $argv[$x+1];
if(strstr($number, ",")){
$names = explode(",",$number);
}else{
$names = $number;
}
$b->dump_column_by_name($names);
break;
case "--help":
case "-h" :
render_help();
break;
case "-dh" :
$b->dump_headers();
break;
}
$x++;
}
}
function render_help(){
echo "CsvFieldDump version 0.0.0.1 by mark fate_amendable_to_change@yahoo.com
-df
-dn
-dh = dumps csv headers
";
}
?>

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

適用於 Ubuntu 和 Debian 的 PHP 8.4 安裝和升級指南

如何設定 Visual Studio Code (VS Code) 進行 PHP 開發
