ホームページ  >  記事  >  バックエンド開発  >  PHP で Excel または Word ドキュメントを生成する最も簡単な方法

PHP で Excel または Word ドキュメントを生成する最も簡単な方法

WBOY
WBOYオリジナル
2016-07-25 08:52:191089ブラウズ
  1. header("Content-type:application/vnd.ms-excel");
  2. header("Content-Disposition:filename=test.xls");
  3. echo "test1t";
  4. echo "test2tn"; //2 列の後で折り返す
  5. echo "test1t";
  6. echo "test2tn";
  7. echo "test1t";
  8. echo "test2tn";
  9. echo "test1t";
  10. echo "test2tn";
  11. echo "test1t";
  12. echo "test2tn";
  13. echo "test1t";
  14. echo "test2tn";
コードをコピー

ファイル形式に対応した配列を添付します。

$mime_types = array( 'gif' => '画像/gif', 'jpg' => '画像/jpeg', 'jpeg' => '画像/jpeg', 'jpe' => '画像/jpeg', 'bmp' => '画像/bmp', 'png' => '画像/png', 'tif' => '画像/tiff', 'tiff' => '画像/tiff', 'pict' => 'image/x-pict', 'pic' => 'image/x-pict', 'pct' => 'image/x-pict', 'tif' => '画像/tiff', 'tiff' => '画像/tiff', 'psd' => 'image/x-photoshop',

'swf' => 'application/x-shockwave-flash', 'js' => 'application/x-javascript', 'pdf' => 'アプリケーション/pdf', 'ps' => 'アプリケーション/追記', 'eps' => 'アプリケーション/追記', 'ai' => 'アプリケーション/追記', 'wmf' => 'application/x-msmetafile',

'css' => 'テキスト/css', 'htm' => 'テキスト/html', 'html' => 'テキスト/html', 'txt' => 'テキスト/プレーン', 'xml' => 'テキスト/xml', 'wml' => 'テキスト/wml', 'wbmp' => 'image/vnd.wap.wbmp',

'ミッド' => 'オーディオ/MIDI', 'wav' => 'オーディオ/wav', 'mp3' => 'オーディオ/mpeg', 'mp2' => 'オーディオ/mpeg',

'avi' => 'video/x-msvideo', 'mpeg' => 'ビデオ/mpeg', 'mpg' => 'ビデオ/mpeg', 'qt' => 'ビデオ/クイックタイム', 'mov' => 'ビデオ/クイックタイム',

'lha' => 'application/x-lha', 'lzh' => 'アプリケーション/x-lha', 'z' => 'アプリケーション/x-compress', 'gtar' => 'アプリケーション/x-gtar', 'gz' => 'application/x-gzip', 'gzip' => 'application/x-gzip', 'tgz' => 'application/x-gzip', 'tar' => 'アプリケーション/x-tar', 'bz2' => 'アプリケーション/bzip2', 'zip' => 'アプリケーション/zip', 'arj' => 'アプリケーション/x-arj', 'rar' => 'application/x-rar-compressed',

'hqx' => 'application/mac-binhex40', 'sit' => 'application/x-stuffit', 'bin' => 'application/x-macbinary',

'uu' => 'text/x-uuencode', 'uue' => 'text/x-uuencode',

'latex'=> 'application/x-latex', 'ltx' => 'アプリケーション/x-latex', 'tcl' => 'application/x-tcl',

'pgp' => 'アプリケーション/pgp', 'asc' => 'アプリケーション/pgp', 'exe' => 'application/x-msdownload', 'doc' => 'アプリケーション/msword', 'rtf' => 'アプリケーション/rtf', 'xls' => 'application/vnd.ms-excel', 'ppt' => 'application/vnd.ms-powerpoint', 'mdb' => 'アプリケーション/x-msaccess', 'wri' => 'application/x-mswrite', );



声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。