zhiqingstudy

Be a young person with knowledge and content

<?php
// 1.将字符串写入到文件中,所有的写入操作都是清空重写
$str="php语言\r\n将字符串写入到文件中";
file_put_contents('./test.txt',$str);

// 2.从文件中读取
echo file_get_contents('./test.txt'); // 读取文件内容
readfile('./test.txt'); // 读取文件内容并输出

// 3.1打开文件fopen(文件名,模式),常见的模式有三种。r表示读取文件,w表示写入文件,a表示向文件内追加内容
$fp=fopen('./test.txt','w'); //打开文件返回文件指针
// 写入文件内容
fputs($fp,'hello world');
// 关闭文件
fclose($fp);
// 3.2打开文件读取
$fp=fopen('./test.txt','r');
// fgets只读取一行,所以要循环才能读取所有的内容
while($line=fgets($fp)){
    echo $line.'<br>';
}
fclose($fp);
// 3.3打开文件追加
$fp=fopen('./test.txt','a');
fputs($fp,'你好,程序员');
fclose($fp);
?>
comment
head sculpture
Code:
Related

The art of interpersonal communication and communication

A code of conduct that regulates and regulates interpersonal relationships

The importance of interpersonal relationships




Unless otherwise specified, all content on this website is original. If the reprinted content infringes on your rights, please contact the administrator to delete it
Contact Email:2380712278@qq.com

Filing number:皖ICP备19012824号