工具/原料
电脑一台
WAMP开发环境
方法/步骤
file_get_content()函数介绍。使用file_get_contents()获取txt文件的内容,具体参数说明如下:
2
具体实例说明。从文本文件tst.txt中读取里面的内容并显示在浏览器中,具体代码和图示如下:
<?php
$file = 'tst.txt'
$content = file_get_contents($file)//读取文件中的内容
echo $content
?>
PHP 中的 file_get_contents() 函数可以实现file_get_contents() 函数把整个文件读入一个字符串中。
和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串。
file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首选方法。如果 *** 作系统支持,还会使用内存映射技术来增强性能。
例如:
<?php
echo file_get_contents("test.txt")
?>
把文本里面的内容改成<p style="color:red">you did not</p>
<p><strong>Your order could not be processed at this time.Please try again later.</strong></p>
<?php echo date('H:i,jS F Y')?>
试试
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)