--TEST-- encoding stream brotli with explicit flush --SKIPIF-- --FILE-- flush(); if (strlen($temp = $enc->update($line))) { $data .= $dec->update($temp); $data .= $dec->flush(); } if (strlen($temp = $enc->flush())) { $data .= $dec->update($temp); $data .= $dec->flush(); } } if (strlen($temp = $enc->finish())) { $data .= $dec->update($temp); } var_dump($enc->done()); $data .= $dec->finish(); var_dump($dec->done()); var_dump(implode("", $file) === $data); ?> DONE --EXPECT-- Test bool(true) bool(true) bool(true) DONE