json_encode

This commit is contained in:
Fred Tempez 2023-03-10 11:29:43 +01:00
parent 566a083dec
commit c4e150af97
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class JsonDb extends \Prowebcraft\Dot
$lenght = strlen(json_encode($this->data));
$try = 0;
while ($try < 5) {
$written = file_put_contents($this->db, json_encode($this->data), JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | LOCK_EX); // Multi user get a locker
$written = file_put_contents($this->db, json_encode($this->data, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | LOCK_EX)); // Multi user get a locker
if ($written == $lenght) {
break;
}