Files
citrus-cms/resources/views/admin-ajax/excel-creator2.php
T
2026-04-28 21:15:09 +03:00

24 lines
640 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
try {
// Yeni bir elektronik tablo oluştur
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
$sheet->setCellValue('A1', 'Hello World!');
// Yeni bir Xlsx dosya yazıcı oluştur
$writer = new Xlsx($spreadsheet);
// Dosya yolu
$outputFilePath = 'storage/documents/test/output/output.xlsx';
// Dosyayı kaydet
$writer->save($outputFilePath);
echo "Dosya başarıyla Xlsx olarak kaydedildi: $outputFilePath";
} catch (Exception $e) {
echo 'Hata: ' . $e->getMessage();
}
?>