您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1615 复制当前网址

fputs



PHP fputs() 函数

定义和用法

fputs() 函数写入文件(可安全用于二进制文件)。

fputs() 函数是 fwrite() 函数的别名。


语法

fputs(file,string,length)

参数描述
file必需。规定要写入的打开文件。
string必需。规定要写入文件的字符串。
length可选。规定要写入的最大字节数。


说明

fwrite() 把 string 的内容写入文件指针 file 处。 如果指定了 length,当写入了 length 个字节或者写完了 string 以后,写入就会停止,视乎先碰到哪种情况。

fwrite() 返回写入的字符数,出现错误时则返回 false。


例子

<?php
$file = fopen("test.txt","w");
echo fputs($file,"Hello World. Testing!");
fclose($file);
?>

输出:

21


文章来源:https://liqingbo.com/blog-606.html

上一篇:fread

下一篇:fputcsv

评论