Update safefilerewrite with PHP_EOL

This commit is contained in:
billz 2019-04-30 22:57:12 +00:00
parent 1008f83cc4
commit 3f9b422f5f
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ function write_php_ini($array, $file)
if (is_array($val)) {
$res[] = "[$key]";
foreach ($val as $skey => $sval) {
$res[] = "$skey = $val";
$res[] = "$skey = $sval";
}
} else {
$res[] = "$key = $val";
@ -44,7 +44,7 @@ function safefilerewrite($fileName, $dataToSave)
//file was locked so now we can store information
if ($canWrite) {
fwrite($fp, $dataToSave);
fwrite($fp, $dataToSave.PHP_EOL);
flock($fp, LOCK_UN);
}
fclose($fp);