每日总结
Posted chenghaixinag
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日总结相关的知识,希望对你有一定的参考价值。
1.php包含文件include 和 require 语句,文件处理
<?php include \'header.php\'; ?>引用header.php
fopen() 函数用于在 PHP 中打开文件。
fclose() 函数用于关闭打开的文件:
fgets() 函数用于从文件中逐行读取文件。
<html>
<body>
<?php
$file=fopen("welcome.txt","r");
?>
</body>
</html>
以上是关于每日总结的主要内容,如果未能解决你的问题,请参考以下文章