MEXICO WEATHER

Wind Speed D6

Generated by wpDataTables
calendario
enero 2025
L M X J V S D
 12345
6789101112
13141516171819
20212223242526
2728293031  

use Box\Spout\Reader\Common\Creator\ReaderEntityFactory;

$path = ‘https://sensadometeorologico.uaz.edu.mx/wp-content/uploads/2023/10/05_08_2023.csv’;
# open the file
$reader = ReaderEntityFactory::createXLSXReader();
$reader->open($path);
# read each cell of each row of each sheet
foreach ($reader->getSheetIterator() as $sheet) {
foreach ($sheet->getRowIterator() as $row) {
foreach ($row->getCells() as $cell) {
var_dump($cell->getValue());
}
}
}
$reader->close();

dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.