Since my file columns are separated by a tab, I use the following:
while (($data = fgetcsv($handle, 1000, "\t")) !== FALSE) {
But is there a way to deal with a string delimiter as well?
Since my file columns are separated by a tab, I use the following:
while (($data = fgetcsv($handle, 1000, "\t")) !== FALSE) {
But is there a way to deal with a string delimiter as well?
Copyright © 2021 Jogjafile Inc.

Add more one optional parameter:
Here more information about fgetcsv