No more lightdb:delete v5
This commit is contained in:
parent
7046d3900c
commit
01ebcc324e
|
@ -125,6 +125,7 @@
|
|||
/* (2) On ajoute les données aux fichier */
|
||||
$json_data = json_encode($data);
|
||||
$this->driver->seek($already_line);
|
||||
if( $already_line == $this->line )
|
||||
$this->line++;
|
||||
$written = $this->driver->fwrite( $json_data.PHP_EOL );
|
||||
|
||||
|
@ -134,7 +135,7 @@
|
|||
|
||||
/* (3) On enregistre l'index */
|
||||
$this->index[$key] = [
|
||||
'line' => $this->line - 1,
|
||||
'line' => $already_line - 1,
|
||||
'hash' => sha1($json_data)
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in New Issue