1. 程式人生 > >PHP導出CSV

PHP導出CSV

limit clas header text AS ont end div ade

    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=文件名".date("Y-m-d").".csv");
        ob_end_flush(); 
        echo "標題1,標題2,標題3\r";
        
echo "數據1,數據2,數據3\r";

PHP導出CSV