php创建文件

lbcmail 2011-09-28

<?php 
$counter_file       =   'aa.txt ';//文件名及路径,在当前目录下新建aa.txt文件 
$fopen                     =   fopen($counter_file,   'wb ');//新建文件命令 
fputs($fopen,   'aaaaaa ');//向文件中写入内容; 
fclose($fopen); 
?>

相关推荐