mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
22 lines
413 B
PHP
Executable File
22 lines
413 B
PHP
Executable File
--TEST--
|
|
ZE2 factory and singleton, test 9
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
class test {
|
|
|
|
protected function __destruct() {
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
}
|
|
|
|
$obj = new test;
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
===DONE===
|
|
|
|
Warning: Call to protected test::__destruct() from context '' during shutdown ignored in Unknown on line 0
|