工具/原料
电脑一台
WAMP开发环境
方法/步骤
file_get_content()函数介绍。使用file_get_contents()获取txt文件的内容,具体参数说明如下:
2
具体实例说明。从文本文件tst.txt中读取里面的内容并显示在浏览器中,具体代码和图示如下:
<?php
$file = 'tst.txt'
$content = file_get_contents($file)//读取文件中的内容
echo $content
?>
你想无刷新显示内容就用 ajax 实现吧,后台只负责返回这个文件的内容,前台一直不停的发送请求:
// JavascriptsetInterval(function () {
$.ajax(
{
url : url, // 请求地址
type : type, // 请求方式
dataType : 'JSON', // 返回数据的格式
success : function (response) {
console.log(response) // 最终数据
},
error : function () {
console.log('Request Fail')
}
}
)
}, 1000) // php
$filename = 'data.txt'
$f = fopen($filename)
$content = fread($f, filesize($filename))
fclose($f)
echo $content // 具体数据格式参照前台获取方式
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)