|
|
PHP4完全中文手册
fwrite
二进位位方式写入文件。
语法: int fwrite(int fp, string string, int [length]);
返回值: 整数
函数种类: 文件存取
本函数将字符串 string 写入文件资料流的指针 fp 上。若有指定长度 length,则会写入指定长度字符串,或是写到字符串结束。治募注意的是若指定了长度,则在 PHP 环境配置值 magic_quotes_runtime 的配置将被忽略,同时字符串中的斜线不会被删除。
fread() fopen() popen() fsockopen() fputs()
整理: sadly (www.phpx.com)
|
|