Skip to content

Instantly share code, notes, and snippets.

@cereal-s
Created December 19, 2016 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cereal-s/86f9c6bbe7c8ebc29405b9cccf3f5221 to your computer and use it in GitHub Desktop.
Save cereal-s/86f9c6bbe7c8ebc29405b9cccf3f5221 to your computer and use it in GitHub Desktop.
<?php
header('Content-Type: text/csv');
$data[] = ['sent'
, 'success'
, '114661698'
, '709081462'
, '+919900123456'
];
$data[] = ['sent'
, 'success'
, '134707665'
, '937687314'
, '+917795987654'
];
$out = fopen('php://output', 'w');
foreach($data as $row)
fputcsv($out, $row);
fclose($out);
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment