0

PHPを使用してCSVをエクスポートしようとしています。ただし、結果を出力する代わりにResource id #26、生成された CSV FILE に出力します。end から exit を削除すると、HTML ページのコンテンツ全体が出力されます。私のコードは...

      if (isset($_REQUEST['download']) && ($_REQUEST['download'] == "yes")) {
            header('Content-Type: text/csv; charset=utf-8');
            header('Content-Disposition: attachment; filename=link_point_report.csv');
            $output = fopen('php://memory', 'w+');
            fputcsv($output, array('Member Id', 'Customer Name', 'Customer Email'));

            $customerListAll = $oAdmFun->linkpoint_check_customer('', '');       
             $oAdmFun->pr($customerListAll, true);
//                if (count($customerListAll) > 0) {
//                        for ($c = 0; $c < count($customerListAll); $c++) {
//                                fputcsv($output, array('Sankalp', 'Sankalp', 'Sankalp'));
//                        }
//                }

            ob_clean();
            flush();
            exit($output);
    }
4

3 に答える 3

3

これは、$output がリソースであり、fopen()が返すものだからです。その内容を取得するには、 fread()を使用する必要があります。

編集:今、私はあなたが求めていたものを理解しています. CSV の内容を出力するには、リソースからテキスト出力を取得する必要があります。

rewind( $output );
$csv_output = stream_get_contents( $output );
fclose( $output );
die( $csv_output );

また、コンテンツ長ヘッダーを設定して、クライアントが何を期待するかを知ることもお勧めします。

header('Content-Length: ' . strlen($csv_output) );
于 2012-11-23T17:10:09.963 に答える
0
function CSV_HtmlTable($csvFileName)
{
// better to open new webpage 
echo "<html>\n<body>\n\t<table style=''>\n\n";
$f = fopen($csvFileName, "r");
$trcount = 0; //start the row count as 0
while (($line = fgetcsv($f)) !== false) {
        $trclass = ''; if ($trcount%2==0) { $trclass=' class="dark"'; } //default to nothing, but if it's even apply a class
        echo "\t\t<tr".$trclass.">\n"; //same as before, but now this also has the variable $class to setup a class if needed
        $tdcount = 0; //reset to 0 for each inner loop
        foreach ($line as $cell) {
                $tdclass = ''; if ($tdcount%2==0) { $tdclass=' class="dark"'; } //default to nothing, but if it's even apply a class
                echo "\t\t\t<td ".$tdclass."style='padding:.4em;'>" . htmlspecialchars($cell) . "</td>"; //same as before, but now this also has the variable $class to setup a class if needed
                $tdcount++; //go up one each loop
        }
        echo "\r</tr>\n";
        $trcount++; //go up one each loop
}
fclose($f);
echo "\n\t</table>\n</body>\n</html>";


}
于 2015-03-12T07:05:59.863 に答える