fwrite
(PHP3 , PHP4)
fwrite --- 将资料写入文件
语法 :
int fwrite
(int fp, string string [, int length])说明 :
fwrite( )将string的内容写到文件中,如果有给予参数length,则当length位元组已写入或是到达string的结尾,写入都将会停止。
注意 : 如果有给予参数length,则magic_quotes_runtime选项将会被忽略,并且将不会从string去除斜线。
参考 : fread( ) fopen( ) fsockopen( ) popen( ) fputs( )