You have not opened the file. str_getcsv()
retrieves CSV data from a string, not from a file. Use fgetcsv()
instead:
$test="tester.txt";
$handle = fopen($test, 'r');
$bigarr = fgetcsv($handle);
print_r($bigarr);
3
solved opening file with php not working