demo_func_filesystem_fgetcsv2.php:
<!DOCTYPE html> <html> <body> <?php $file = fopen("contacts.csv","r"); while(! feof($file)) { print_r(fgetcsv($file)); } fclose($file); ?> </body> </html>