//$file:文件路徑,$content要寫入的字符串
function put_to_file($file, $content) {
$fopen = fopen($file, 'wb');
if (!$fopen) {
return false;
}
fwrite($fopen, $content);
fclose($fopen);
return true;
}
皖公網(wǎng)安備 34162202000270號(hào)