Codice PHP per convertire una query MySQL in CSV [chiuso]


128

Qual è il modo più efficiente per convertire una query MySQL in CSV in PHP, per favore?

Sarebbe meglio evitare i file temporanei in quanto ciò riduce la portabilità (percorsi dir e impostazione delle autorizzazioni del file system richieste).

Il CSV dovrebbe includere anche una riga superiore di nomi di campo.


73
Perché questa domanda è stata chiusa come non costruttiva? Questo va bene e perfettamente chiaro.

14
@Alec Perché alcuni moderatori qui sono supermoderatori, sai ... "Con i superpoteri derivano grandi responsabilità!" - Zio Ben
finitenessofinfinity

18
@finitenessofinfinity il potere corrompe, il potere assoluto corrompe assolutamente. Stackoverflow ne è un eccellente esempio.

16
Sto votando per riaprire questa domanda!
TN888,

9
Sei mesi dopo e sto usando le risposte a questo nel mio sito web. Questo può essere riaperto?
Jon

Risposte:


138
SELECT * INTO OUTFILE "c:/mydata.csv"
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY "\n"
FROM my_table;

( la documentazione per questo è qui: http://dev.mysql.com/doc/refman/5.0/en/select.html )

o:

$select = "SELECT * FROM table_name";

$export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) );

$fields = mysql_num_fields ( $export );

for ( $i = 0; $i < $fields; $i++ )
{
    $header .= mysql_field_name( $export , $i ) . "\t";
}

while( $row = mysql_fetch_row( $export ) )
{
    $line = '';
    foreach( $row as $value )
    {                                            
        if ( ( !isset( $value ) ) || ( $value == "" ) )
        {
            $value = "\t";
        }
        else
        {
            $value = str_replace( '"' , '""' , $value );
            $value = '"' . $value . '"' . "\t";
        }
        $line .= $value;
    }
    $data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );

if ( $data == "" )
{
    $data = "\n(0) Records Found!\n";                        
}

header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=your_desired_name.xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";

5
tecnicamente, questo è separato da tabulazioni;)
John Douthat,

5
Nota l'uso di barre rovesciate SELECT INTO OUTFILEanche con Windows.
Johan,

1
Ciao, questo funziona benissimo per il formato XLS ma se provo a salvare come file CSV mostra tutti i risultati in 1 colonna. Voglio salvarlo come file CSV.
vinod reddy,

Tra due sopra quale è meglio, più sicuro e perché?
Chella,

1
Tenderei a suggerire che la seconda opzione è più sicura in quanto `SELEZIONA IN OUTFILE richiede che l'utente mysql abbia accesso al filesystem per modificare i file che rappresentano un rischio potenzialmente grande.
Jeepstone,

91

Dai un'occhiata a questa domanda / risposta . È più conciso di quello di @ Geoff e utilizza anche la funzione fputcsv integrata.

$result = $db_con->query('SELECT * FROM `some_table`');
if (!$result) die('Couldn\'t fetch records');
$num_fields = mysql_num_fields($result);
$headers = array();
for ($i = 0; $i < $num_fields; $i++) {
    $headers[] = mysql_field_name($result , $i);
}
$fp = fopen('php://output', 'w');
if ($fp && $result) {
    header('Content-Type: text/csv');
    header('Content-Disposition: attachment; filename="export.csv"');
    header('Pragma: no-cache');
    header('Expires: 0');
    fputcsv($fp, $headers);
    while ($row = $result->fetch_array(MYSQLI_NUM)) {
        fputcsv($fp, array_values($row));
    }
    die;
}

1
Il tuo non ha le intestazioni di colonna.
Paolo Bergantino,

15
Nel caso in cui qualcun altro sia stupido come me, non sostituirlo php://outputcon un nome di file reale o provare a chiuderlo con un fclosealla fine: non è un file reale, solo un alias per il flusso di output. Comunque questa risposta ha funzionato perfettamente per me, grazie Jrgns!
J.Steve,

@ J.Steve Il mio piacere :)
Jrgns il


1
mysql_num_fields () non funziona per me e le intestazioni non vengono generate. Questa funzione è obsoleta o qualcosa del genere?
Doug

20

Guarda la documentazione relativa alla sintassi SELECT ... INTO OUTFILE.

SELECT a,b,a+b INTO OUTFILE '/tmp/result.txt'
  FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  LINES TERMINATED BY '\n'
  FROM test_table;

18

Un aggiornamento alla soluzione @jrgns (con alcune lievi differenze di sintassi).

$result = mysql_query('SELECT * FROM `some_table`'); 
if (!$result) die('Couldn\'t fetch records'); 
$num_fields = mysql_num_fields($result); 
$headers = array(); 
for ($i = 0; $i < $num_fields; $i++) 
{     
       $headers[] = mysql_field_name($result , $i); 
} 
$fp = fopen('php://output', 'w'); 
if ($fp && $result) 
{     
       header('Content-Type: text/csv');
       header('Content-Disposition: attachment; filename="export.csv"');
       header('Pragma: no-cache');    
       header('Expires: 0');
       fputcsv($fp, $headers); 
       while ($row = mysql_fetch_row($result)) 
       {
          fputcsv($fp, array_values($row)); 
       }
die; 
} 

Per qualche motivo $ fp mi restituisce false.
Volatil3,

Per MySQL moderno, puoi usare: $ headers [] = mysqli_fetch_field_direct ($ risultato, $ i) -> nome;
Ben in California,

E cambia le altre funzioni mysql_ in funzioni mysqli_.
Ben in California

6

Se desideri che il download sia offerto come download che può essere aperto direttamente in Excel, questo potrebbe funzionare per te: (copiato da un mio vecchio progetto inedito)

Queste funzioni impostano le intestazioni:

function setExcelContentType() {
    if(headers_sent())
        return false;

    header('Content-type: application/vnd.ms-excel');
    return true;
}

function setDownloadAsHeader($filename) {
    if(headers_sent())
        return false;

    header('Content-disposition: attachment; filename=' . $filename);
    return true;
}

Questo invia un CSV a uno stream usando un risultato mysql

function csvFromResult($stream, $result, $showColumnHeaders = true) {
    if($showColumnHeaders) {
        $columnHeaders = array();
        $nfields = mysql_num_fields($result);
        for($i = 0; $i < $nfields; $i++) {
            $field = mysql_fetch_field($result, $i);
            $columnHeaders[] = $field->name;
        }
        fputcsv($stream, $columnHeaders);
    }

    $nrows = 0;
    while($row = mysql_fetch_row($result)) {
        fputcsv($stream, $row);
        $nrows++;
    }

    return $nrows;
}

Questo usa la funzione sopra per scrivere un CSV in un file, dato da $ nomefile

function csvFileFromResult($filename, $result, $showColumnHeaders = true) {
    $fp = fopen($filename, 'w');
    $rc = csvFromResult($fp, $result, $showColumnHeaders);
    fclose($fp);
    return $rc;
}

Ed è qui che accade la magia;)

function csvToExcelDownloadFromResult($result, $showColumnHeaders = true, $asFilename = 'data.csv') {
    setExcelContentType();
    setDownloadAsHeader($asFilename);
    return csvFileFromResult('php://output', $result, $showColumnHeaders);
}

Per esempio:

$result = mysql_query("SELECT foo, bar, shazbot FROM baz WHERE boo = 'foo'");
csvToExcelDownloadFromResult($result);

1
Grazie giovanissimo codice molto utile. Ho dovuto modificare una riga per la funzione csvFromResult. invece di while ($ row = mysql_fetch_row ($ risultato)) {fputcsv ($ stream, $ row); $ righe ++; }, ho dovuto usare while ($ row = mysql_fetch_row ($ risultato)) {$ data [] = $ row; // fputcsv ($ stream, $ row); // $ righe ++; } foreach ($ data as $ d) {fputcsv ($ stream, $ d); }. grazie ancora per un codice così meraviglioso.
codingbbq,

3
// Export to CSV
if($_GET['action'] == 'export') {

  $rsSearchResults = mysql_query($sql, $db) or die(mysql_error());

  $out = '';
  $fields = mysql_list_fields('database','table',$db);
  $columns = mysql_num_fields($fields);

  // Put the name of all fields
  for ($i = 0; $i < $columns; $i++) {
    $l=mysql_field_name($fields, $i);
    $out .= '"'.$l.'",';
  }
  $out .="\n";

  // Add all values in the table
  while ($l = mysql_fetch_array($rsSearchResults)) {
    for ($i = 0; $i < $columns; $i++) {
      $out .='"'.$l["$i"].'",';
    }
    $out .="\n";
  }
  // Output to browser with appropriate mime type, you choose ;)
  header("Content-type: text/x-csv");
  //header("Content-type: text/csv");
  //header("Content-type: application/csv");
  header("Content-Disposition: attachment; filename=search_results.csv");
  echo $out;
  exit;
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.