ru_php/Zend/tests/stack_limit/stack_limit_014.inc

14 lines
288 B
PHP

<?php
if (!class_exists("constructs_in_destructor")) {
class constructs_in_destructor {
public function __destruct() {
$a = new constructs_in_destructor;
$time = '';
require(__FILE__);
}
}
}
$a = new constructs_in_destructor;