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

(새 문서: ==개요== ;PHP readfile() ==웹 실행예시== ==CLI 실행예시== <source lang='cli'> root@zetawiki:~# cat greet.txt hello </source> <source lang='cli'> root@zetawiki:~# cat read...)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;PHP readfile()
;PHP readfile()
* 파일을 출력하는 PHP 함수


==웹 실행예시==
==웹 실행예시==

2016년 2월 19일 (금) 02:33 판

1 개요

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

2 웹 실행예시

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 }}