-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/classes/
File Upload :
Current File : //usr/src/php/tests/classes/destructor_visibility_001.phpt

--TEST--
ZE2 Ensuring destructor visibility
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php

class Base {
	private function __destruct() {
    	echo __METHOD__ . "\n";
	}
}

class Derived extends Base {
}

$obj = new Derived;

unset($obj);

?>
===DONE===
--EXPECTF--
Fatal error: Call to private Derived::__destruct() from context '' in %sdestructor_visibility_001.php on line %d

Copyright © 2017 || Recoded By Mr.Bumblebee