Advertisement
LrdArc

PHP to CSV | intip.in/tocsv

Mar 29th, 2017
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. $f = $db->r( 'table', '*' );
  4. $csv = fopen( 'namafile.csv', 'w' );
  5.  
  6. foreach ( $f as $k => $v ) {
  7.     fputcsv( $csv, implode( ',' $v ) );
  8. }
  9.  
  10. fclose( $csv );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement