ホームページ  >  記事  >  バックエンド開発  >  PHP エクスポート xls の問題

PHP エクスポート xls の問題

WBOY
WBOYオリジナル
2016-06-23 13:42:23896ブラウズ

すごいです

上記のコードを実行してもダウンロードできないのはなぜですか? ?


ディスカッションに返信 (解決策)

サイズなどが不足しています

<?header("Content-type:application/vnd.ms-excel");header("Content-Disposition:filename=test.xls");echo "test1 ";echo "test2";echo "test1";echo "test2";echo "test1";echo "test2";echo "test1";echo "test2";echo "test1";echo "test2";echo "test1";echo "test2";?>

header("Content-Type: application/force-download")
header("Content-Type: application /octet-stream");
header("Content-Type: application/download");
header('Content-Disposition:inline;filename="'.$FileName.'"');
header( " Content-Transfer-Encoding: binary");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H :i: s") . " GMT");
header("Cache-Control: must-revalidate、post-check=0、pre-check=0");
header("Pragma: no-cache");

借入他の人のコード

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