fputs() 函数写入文件(可安全用于二进制文件)。
fputs() 函数是 fwrite() 函数的别名。
//file 必需。规定要写入的打开文件。 //string 必需。规定要写入文件的字符串。 //length 可选。规定要写入的最大字节数。 fputs(file,string,length)
<?php $file = fopen("test.txt","w"); echo fputs($file,"Hello World. Testing!"); fclose($file); ?>