本篇文章的内容我将告诉你如何应用php将服务端的文件读出来显示在web页面。
现有保存在服务端的文件orders.txt,内容为:
现创建vieworder.php文件,将其读出并显示;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
$document_root = $_server [ 'document_root' ];
?>
<!doctype html>
<html>
<head>
<meta charset= "utf-8" >
<title>客户订单</title>
</head>
<body>
<h1>我们的商店</h1>
<h2>客户订单</h2>
<?php
//打开文件,(只读模式+二进制模式)
@ $fp = fopen ( "$document_root/l02/files/orders.txt" , 'rb' );
flock ( $fp ,lock_sh);
if (! $fp ){
echo "<p><strong>订单没有加载,请再试一次</strong></p>" ;
exit ;
}
while (! feof ( $fp )){
$order = fgets ( $fp ,999);
echo $order . "<br/>" ;
}
//释放已有的锁定
flock ( $fp ,lock_un);
//关闭文件流
fclose( $fp );
?>
</body>
</html>
|
最后呈现的页面为:
补充读写文件的相关知识点:
feof()——知道何时读完文件;
fgets()、fgetss()、fgetcsv()——每次读取一行数据;
readfile()、fpassthru()、file()、file_get_contents()——读取整个文件;
fgetc()——读取一个字符;
fread()——读取任意长度;
file_exists()——查看文件是否存在;
filesize()——确定文件大小;
unlink()——删除一个文件;
rewind()、fseek()、ftell()——在文件中定位;
flock()——文件锁定;
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。