Hi!
After upgrade php from 7.4.7 to 7.4.8 my app
crashed at any DB query or DB model usage with
no any error messages or info at the trace. The
only message I found is zend_mm_heap
corrupted
.
Example:
$db->fetchAll('select * from `Option`')
is OK, but
Option::findFirst();
or
$q = $this->modelsManager->createBuilder()->from(Option::class)->getQuery();
$res = $q->execute();
is failed :(
any ideas?
thanks!