PHP fputs() 函数
PHP fputs() 函数
完整的 PHP Filesystem 参考手册定义和用法
fputs() 函数将内容写入一个打开的文件中。
函数会在到达指定长度或读到文件末尾(EOF)时(以先到者为准),停止运行。
如果函数成功执行,则返回写入的字节数。如果失败,则返回 FALSE。
fputs() 函数是 fwrite() 函数的别名。
语法
fputs(file,string,length)
参数 | 描述 |
---|---|
file | 必需。规定要写入的打开文件。 |
string | 必需。规定要写入打开文件的字符串。 |
length | 可选。规定要写入的最大字节数。 |
提示和注释
提示:该函数是二进制安全的。(意思是二进制数据(如图像)和字符数据都可以使用此函数写入。)
实例
<?php
$file = fopen("test.txt","w");
echo fputs($file,"Hello World. Testing!");
fclose($file);
?>
$file = fopen("test.txt","w");
echo fputs($file,"Hello World. Testing!");
fclose($file);
?>
上面的代码将输出:
21
完整的 PHP Filesystem 参考手册
相关文章
- PHP 语法
- PHP Switch 语句
- PHP 数组排序
- PHP While 循环
- PHP 面向对象
- PHP $_POST 变量
- PHP 包含文件 include 和 require 语句
- PHP array_combine() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill_keys() 函数
- PHP array_intersect_key() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_first() 函数
- PHP natsort() 函数
- PHP usort() 函数
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP HTTP 函数
- PHP 杂项 函数