首頁  >  文章  >  後端開發  >  php将数组或字符串写入文件

php将数组或字符串写入文件

WBOY
WBOY原創
2016-06-23 13:47:35854瀏覽

//将数组保存在文件中function export_to_file($file, $variable) {    $fopen = fopen($file, 'wb');    if (!$fopen) {        return false;    }    fwrite($fopen, "<?php \nreturn ".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;}

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn