将数组写入文件
程序员文章站
2022-05-16 18:25:27
...
php代码
<?php $arr = array('A'=>'abc','B'=>'cdf'); $string = var_export($arr,true); file_put_contents('filename',$string);