+
file_put_contents( ファイル名 , 出力データ , [ モード , [ コンテキスト ]] )
<?php $filename = "c:/temp/test.txt";
print "size:" . file_put_contents( $filename, "abcdef" );
?>
$str = array("aaa\n","bbb\n","ccc\n");
print "size:" . file_put_contents( $filename, $str );
aaa bbb ccc