file_put_contents()写入数组

file_put_contents()写入数组

    $arr = array(
    'name'=>'张三',
    ‘age’=>'26',
    'sex'=>'男'
)
$str = var_export($arr,TRUE);
file_put_contents($filename,$str);

你可能感兴趣的:(php)