V
V
Vladimir2020-09-16 12:55:50
PHP
Vladimir, 2020-09-16 12:55:50

How to pass link to CSV using PHP?

Creating a CSV file using PHP

$File = fopen('php://output', 'w');
ob_start();
fputs($File, chr(0xEF) . chr(0xBB) . chr(0xBF)); // BOM
fputcsv($File, ['Ссылка 1', 'Сылка2'],";");
fclose($File);
$sCsv = ob_get_contents();
ob_end_clean();
header("Content-type: text/csv");
        header('Content-Disposition: attachment; filename="file.xls"');
        header("Pragma: no-cache");
        header("Expires: 0");
echo $sCsv;


I can not send the link as in the screenshot below
5f61e10ed1576730343876.jpeg

Answer the question

In order to leave comments, you need to log in

3 answer(s)
I
Ilya, 2020-09-16
@rpsv

CSV is a simple text format, it doesn't do that.
Look in the direction of XLSX and PhpOffice: https://phpspreadsheet.readthedocs.io/en/latest/
PS instead of php://output , it's better to use php://temp , then you won't have to mess with the buffer

T
ThunderCat, 2020-09-16
@ThunderCat

fputcsv($File, ['=HYPERLINK("https://qna.habr.com/q/848207","Сылка1")', 'Сылка2'],";");

A
Anton Shamanov, 2020-09-16
@SilenceOfWinter

CSV is a simple text format, it doesn't do that.

including it all depends on the program in which the csv file is opened + links must be absolute, i.e.http://host.name/path/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question