Skip to content

Instantly share code, notes, and snippets.

@sohag-pro
Created December 7, 2022 07:04
Show Gist options
  • Save sohag-pro/b31e8561b38dab94d6585f3dd69c4684 to your computer and use it in GitHub Desktop.
Save sohag-pro/b31e8561b38dab94d6585f3dd69c4684 to your computer and use it in GitHub Desktop.
Read CSV to PHP Array
<?php
$file = fopen( 'file.csv', 'r' );
$csv = [];
while ( ( $row = fgetcsv( $file ) ) !== FALSE ) {
$csv[] = array_map( function ( $value ) {
return preg_replace(
['/"/', "/\r?\n/", '/[\x00-\x1F\x80-\xFF]/'],
['""', '<br>', ''],
$value
);
}, $row );
}
fclose( $file );
$header = array_shift( $csv );
$csv = array_map( function ( $row ) use ( $header ) {
return array_combine( $header, $row );
}, $csv );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment