b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin - Copy/mainpay/src/xdebug/tests/base/
File Upload :
Current File : E:/www/b-group.old/spfin - Copy/mainpay/src/xdebug/tests/base/bug00001.phpt

--TEST--
Test for crash with a destructor
--INI--
xdebug.mode=develop
xdebug.auto_profile=0
--FILE--
<?php
	class A {
		public function __destruct() {
			echo "destructor!\n";
		}
	}

	$obj = new A();

	echo "I'm alive!\n";
?>
--EXPECT--
I'm alive!
destructor!

Copyright © 2019 by b0y-101