Files
ali-cicd/app/read.php
2026-04-02 15:13:15 +05:30

21 lines
314 B
PHP

<?php
$file = 'data.csv';
$data = [];
if (file_exists($file)) {
$handle = fopen($file, 'r');
while (($row = fgetcsv($handle)) !== false) {
$data[] = [
"number" => $row[0]
];
}
fclose($handle);
}
header('Content-Type: application/json');
echo json_encode($data);
?>