How to convert an array into a csv format file and output it in php_PHP tutorial

WBOY
Release: 2016-07-13 10:03:01
Original
1070 people have browsed it

How PHP converts an array into a CSV format file and outputs it

This article describes the example of how PHP converts an array into a CSV format file for output. Share it with everyone for your reference. The specific implementation method is as follows:

<?php
$sales = array( array('east','2005-01-01','2005-02-01',12.54),
        array('west','2005-01-01','2005-02-01',546.33),
        array('south','2005-01-01','2005-02-01',93.26),
        array('north','2005-01-01','2005-02-01',945.21),
        array('All Regions','--','--',1597.34) );
$fh = fopen('file.csv','w') or die("Can't open file.csv");
foreach ($sales as $sales_line) {
  if (fputcsv($fh, $sales_line) === false) {
    die("Can't write CSV line");
  }
}
fclose($fh) or die("Can't close file.csv");
?>
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/969344.htmlTechArticleHow to convert an array into a csv format file and output it in php. This article describes how to convert an array into a csv format file and output it in php. method. Share it with everyone for your reference. The specific implementation method is as follows...
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!