export.php

来自「通达OA2007SE源代码 非常好的」· PHP 代码 · 共 13 行

PHP
13
字号
<?
  include_once 'inc/auth.php';
  include_once 'inc/utility_all.php';
  ob_end_clean ();
  header ('Cache-control: private');
  header ('Content-type: application/vnd.ms-excel');
  header ('Accept-Ranges: bytes');
  header (('Accept-Length: '.strlen ($MY_EXCEL_OUT)));
  header (('Content-Length: '.strlen ($MY_EXCEL_OUT)));
  header ('Content-Disposition: attachment; filename= 车辆维护记录.csv');
  echo $MY_EXCEL_OUT;
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?