<?php class Func { public function __construct(){ echo 'construct'."\n"; } public function __invoke(){ echo 'invoke'."\n"; } public function __destruct(){ echo 'destruct'."\n"; } } $f = new Func(); $f(); echo 'exit before'."\n"; exit(); echo 'exit after'."\n"; var_dump($f);
You have javascript disabled. You will not be able to edit any code.