Use the php change to csv or csv change to php
<?php //define variable of csv file $csv = array(); $lines = file(‘https://www.idelonghi.com.hk/pub/media/Zh.csv’, FILE_IGNORE_NEW_LINES); foreach ($lines as $key => $value) { $csv[$key] = str_getcsv($value); } // count the number of $csv. $number = count($csv); // define variable $delonghi = array();…