Bir kimse bir CSV dosyasında içeriğini okumak ve daha sonra bazı tabloları eklemek yanı sıra www bazı verileri almak için PHP bir kod parçacığını bulmak için bana yardımcı olabilir (görüntü FOM CSV dosyasında görüntü url getirilemedi)
Kod böyle bir şey olmazdı. Bu kod test ne de güvenlik için güçlendirilmiş olmamıştır unutmayın.
$ = Fopen ("fileUploads.csv", "r") kolu;
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$insertSQL = "INSERT INTO myTable values ('$data[0]', '$data[1]')";
//run the sql
//download the image
$saveHandle = fopen("image".$data[0] .".jpg", "w+");
$getImageHandle = fopen($data[1], "r"); // open the image
$contents = stream_get_contents($getImageHandle); //download it
fclose($getImageHandle); //close the handle
fwrite($saveHandle, $contents); //write the contents to disk
fclose($saveHandle); //close the handle
}
fclose ($ handle);
Bu kod csv bu gibi görünüyor varsayar.