PHP export CSV

    set_time_limit (0 );
         ob_end_clean ();
         header ("Content-Type: application/force-download" );  
         header ("Content-type:text/csv;charset=utf-8" );  
         header ("Content-Disposition: filename=filename" .date ( "Ymd").".csv" );
         ob_end_flush (); 
         echo "Title 1, Title 2, Title 3\r" ;
         echo "Data 1, Data 2, Data 3\r" ;
        

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325205502&siteId=291194637