1. 程式人生 > >php把數組、字符串 生成文件

php把數組、字符串 生成文件

字符 turn 代碼 nbsp col name style 數組 die

生成的代碼 data/ss.php

<?php
return  
array (
  name => 1111,
  title => 2222,
);

php代碼

$str = "<?php\nreturn  \n";
        $myfile = fopen("data/ss.php", "w") or die("Unable to open file!");

        fwrite($myfile, $str);

        fwrite($myfile, var_export($data, true));
        fwrite($myfile, 
;); fclose($myfile);

php把數組、字符串 生成文件