$path='路径';//写入路径 $file=include $path; $res = array_merge($file, array('key'=>$rolling)); $str = ' $value){ // '\'' 单引号转义 //$str .= '\''.$key.'\''.'=>'.'\''.$value.'\''.','; if (is_array($value)){ $str.= '\''.$key.'\''.'=>array('; foreach ($value as $k=>$v){ $str.='\''.$k.'\''.'=>'.'\''.$v.'\''.','; } $str.='),'; }else{ $str.='\''.$key.'\''.'=>'.'\''.$value.'\''.','; } }; $str .= '); '; $upfile =file_put_contents($path, $str);//写入文件
还有另一个看起来简单的方法