PHP/Laravel file to array

Explode on Comma
$emails = array_map('trim', explode(',', file_get_contents($request->file('csv')[0]->getPathName())));
Split on new line
$emails = array_map('trim', preg_split("/$\R?^/m", file_get_contents($request->file('csv')[0]->getPathName())));

Labels: ,

© copyright-2020 Rejaul