download_excel

mendownload variable Array ke formal excel (.xlsx)

download_excel($filename = '', $datas = array(), $sheet = 'sheet 1');

  • $filename: String nama file hasil download
  • $datas: Array berisi content yang ada di file excel
  • $sheet: String judul sheet 1
Contoh penggunaan:
_func('download');
$datas = array(
  array(
    'nama'   => 'Aku',
   'Alamat' => 'Tau'
    ),
  array(
    'nama'   => 'Kamu',
    'Alamat' => 'Bodo'
   )
 );
download_excel('namafile', $datas, 'sheet satu');

 

File Path: includes/function/download.php function untuk mendownload file baik file yang sudah ada juga file dalam bentuk excel

0 Comment

Post Your Comment

Terakhir Dilihat