"PHP readfile()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
4번째 줄: 4번째 줄:


==웹 실행예시==
==웹 실행예시==
<source lang='php'>
<syntaxhighlight lang='php'>
<?php
<?php
$file = '/usr/share/apache2/icons/ubuntu-logo.png';
$file = '/usr/share/apache2/icons/ubuntu-logo.png';
19번째 줄: 19번째 줄:
header('Content-Length: ' . filesize($file));
header('Content-Length: ' . filesize($file));
readfile($file);
readfile($file);
</source>
</syntaxhighlight>
* 예제: http://zetawiki.com/ex/php/readfile.php
* 예제: http://zetawiki.com/ex/php/readfile.php


==CLI 실행예시==
==CLI 실행예시==
<source lang='cli'>
<syntaxhighlight lang='console'>
root@zetawiki:~# cat greet.txt
root@zetawiki:~# cat greet.txt
hello
hello
</source>
</syntaxhighlight>
<source lang='cli'>
<syntaxhighlight lang='console'>
root@zetawiki:~# cat readfile.php  
root@zetawiki:~# cat readfile.php  
<?php
<?php
readfile('greet.txt');
readfile('greet.txt');
</source>
</syntaxhighlight>
<source lang='cli'>
<syntaxhighlight lang='console'>
root@zetawiki:~# php readfile.php  
root@zetawiki:~# php readfile.php  
hello
hello
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
46번째 줄: 46번째 줄:
* [[PHP virtual()]] - 아파치 서브-리퀘스트 수행
* [[PHP virtual()]] - 아파치 서브-리퀘스트 수행


==참고 자료==
==참고==
* http://php.net/manual/en/function.readfile.php
* http://php.net/manual/en/function.readfile.php


[[분류: PHP]]
[[분류: PHP]]
[[분류: 파일]]
[[분류: 파일]]

2020년 11월 2일 (월) 02:35 기준 최신판

1 개요[ | ]

PHP readfile()
  • 파일을 출력하는 PHP 함수

2 웹 실행예시[ | ]

<?php
$file = '/usr/share/apache2/icons/ubuntu-logo.png';
if( !file_exists($file) ) {
	echo "파일이 없습니다.";
	exit;
}
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);

3 CLI 실행예시[ | ]

root@zetawiki:~# cat greet.txt
hello
root@zetawiki:~# cat readfile.php 
<?php
readfile('greet.txt');
root@zetawiki:~# php readfile.php 
hello

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}