php将数组或字符串写入文件
//将数组保存在文件中
function export_to_file($file, $variable) {
$fopen = fopen($file, "wb");
if (!$fopen) {
return false;
}
fwrite($fopen, "<?php
return ".var_export($variable, true).";
?>");
fclose($fopen);
return true;
}
//将字符串写入文件
function put_to_file($file, $content) {
$fopen = fopen($file, "wb");
if (!$fopen) {
return false;
}
fwrite($fopen, $content);
fclose($fopen);
return true;
}声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇: php将数组写入文件
