$content = file_get_contents('./test.txt');//"./test.txt"表示么意思?
phpcn_u814
phpcn_u814 2017-02-21 13:22:38
0
2
973
<?php
$filename = '/data/webroot/usercode/resource/test.txt';
//编写代码读取$filename的文件内容
$content = file_get_contents('./test.txt');//"./test.txt"表示么意思?
echo 'this is a test file.';
$fp = fopen('./text.txt', 'rb');
while(!feof($fp))//"!feof()"表示么意思?
 {
   echo fgets($fp); //读取一行
}
fclose($fp);


phpcn_u814
phpcn_u814

모든 응답(2)
数据分析师

$content = file_get_contents('./test.txt');//"./test.txt"는 무엇을 의미하나요? -PHP 중국어 사이트 Q&A-$content = file_get_contents('./test.txt');//"./test.txt"는 무엇을 의미하나요? -PHP 중국어 홈페이지 Q&A

꼭 보고 배워보세요.

刘奇

"./test.txt"指的是文件的路径,用来表示这个文件在哪,怎么找到。"!feof()"检测是否已到达文件末尾

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿