--TEST-- GH-13612 (Corrupted memory in destructor with weak references) --FILE-- weakAnalysingMap = \WeakReference::create($analysingMap); } public function __destruct() { var_dump($this->weakAnalysingMap->get()); } }; $this->destroyed[] = 1; $this->ownerDestructorHandlers[] = $handler; } } new WeakAnalysingMapRepro(); echo "Done\n"; ?> --EXPECT-- NULL Done