PHP에서 파일을 내보내는 방법은 무엇입니까?
PHP 프로그래밍에서 쿼리 결과를 Excel로 내보내려면 페이지의 Context-Type만 수정하면 됩니다.
예:
코드 예:
header("Content-Type: application/vnd.ms-excel")
열기/저장 대화 상자를 제공하려는 경우 Content-Disposition 매개 변수, Content-Disposition 매개 변수는 원래 다음과 같은 경우 제안된 파일 이름을 제공하기 위한 것입니다. 클라이언트는 파일을 저장하지만 보안상의 이유로 이 매개변수는 사양에서 제거되었습니다.
콘텐츠 처리 매개변수:
attachment --- 첨부 파일로 다운로드
inline --- 온라인으로 열기
구체적인 사용법:
코드 예:
header("Content-Disposition: inline; filename=文件名.mp3"); Header("Content-Disposition:attachment;filename=test.xls");
실제로 IE는 파일 이름을 기반으로 합니다. Content-Disposition에서 이 섹션에 있는 파일 이름의 접미사는 파일 형식을 식별합니다. 파일 형식이 많은 경우 Content-Type을 바이너리 모드로 설정할 수 있습니다.
Header("Content-type: application/octet-stream");
예:
코드 예:
<? $filename = './download/d.rar '; $filesize = filesize($filename); header( "Content-Type: application/force-download "); header( "Content-Disposition: attachment; filename= ".basename($filename)); header( "Content-Length: ".$filesize); $data = file_get_contents($filename); echo $data; ?>
위 코드를 사용하면 페이지를 연 직후에 다운로드 및 저장 창이 나타나며, 다운로드한 파일은 $filename입니다.
일반적으로 사용되는 MIME 유형 유형:
$mimetypes = array( 'doc' => 'application/msword', 'bin' => 'application/octet-stream', 'exe' => 'application/octet-stream', 'so' => 'application/octet-stream', 'dll' => 'application/octet-stream', 'pdf' => 'application/pdf', 'ai' => 'application/postscript', 'xls' => 'application/vnd.ms-excel', 'ppt' => 'application/vnd.ms-powerpoint', 'dir' => 'application/x-director', 'js' => 'application/x-javascript', 'swf' => 'application/x-shockwave-flash', 'xhtml' => 'application/xhtml+xml', 'xht' => 'application/xhtml+xml', 'zip' => 'application/zip', 'mid' => 'audio/midi', 'midi' => 'audio/midi', 'mp3' => 'audio/mpeg', 'rm' => 'audio/x-pn-realaudio', 'rpm' => 'audio/x-pn-realaudio-plugin', 'wav' => 'audio/x-wav', 'bmp' => 'image/bmp', 'gif' => 'image/gif', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'png' => 'image/png', 'css' => 'text/css', 'html' => 'text/html', 'htm' => 'text/html', 'txt' => 'text/plain', 'xsl' => 'text/xml', 'xml' => 'text/xml', 'mpeg' => 'video/mpeg', 'mpg' => 'video/mpeg', 'avi' => 'video/x-msvideo', 'movie' => 'video/x-sgi-movie', );
PHP 관련 지식을 더 보려면 PHP 중국어 웹사이트를 방문하세요!
위 내용은 PHP에서 파일을 내보내는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!