Add an option to download the data as csv
This commit is contained in:
parent
c6e2466914
commit
18af3af7d4
3 changed files with 50 additions and 0 deletions
48
download.php
Normal file
48
download.php
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function array2csv(array &$array) {
|
||||||
|
if (count($array) == 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
ob_start();
|
||||||
|
$df = fopen("php://output", 'w');
|
||||||
|
fputcsv($df, array_keys(reset($array)));
|
||||||
|
foreach ($array as $row) {
|
||||||
|
fputcsv($df, $row);
|
||||||
|
}
|
||||||
|
fclose($df);
|
||||||
|
return ob_get_clean();
|
||||||
|
}
|
||||||
|
|
||||||
|
function download_send_headers($filename) {
|
||||||
|
// disable caching
|
||||||
|
$now = gmdate("D, d M Y H:i:s");
|
||||||
|
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
|
||||||
|
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
|
||||||
|
header("Last-Modified: {$now} GMT");
|
||||||
|
|
||||||
|
// force download
|
||||||
|
header("Content-Type: application/force-download");
|
||||||
|
header("Content-Type: application/octet-stream");
|
||||||
|
header("Content-Type: application/download");
|
||||||
|
|
||||||
|
// disposition / encoding on response body
|
||||||
|
header("Content-Disposition: attachment;filename={$filename}");
|
||||||
|
header("Content-Transfer-Encoding: binary");
|
||||||
|
}
|
||||||
|
|
||||||
|
include('db.php');
|
||||||
|
$db = new DataBase();
|
||||||
|
if (!$db->isInit()) {
|
||||||
|
echo 'Error db init';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isset($_GET['id'])) {
|
||||||
|
echo json_encode(false);
|
||||||
|
}
|
||||||
|
$id = $_GET['id'];
|
||||||
|
|
||||||
|
download_send_headers("data_export_" . date("Y-m-d") . ".csv");
|
||||||
|
echo array2csv($db->getWordsList($id));
|
||||||
|
die();
|
|
@ -57,3 +57,4 @@ title = "Liste des mots du nuage"
|
||||||
word = "Mot"
|
word = "Mot"
|
||||||
count = "Nombre"
|
count = "Nombre"
|
||||||
percent = "%"
|
percent = "%"
|
||||||
|
download = "Télécharger la liste"
|
||||||
|
|
|
@ -51,6 +51,7 @@ if (isset($id)) {
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
</details>
|
</details>
|
||||||
|
<a href="download.php?id=<?php echo $id ?>"><?php echo L::wordsList_download ?></a>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue