blob: 7d2fc6db08a039ec804796664e7f291f10fa2b39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
Bug #72888 (Segfault on clone on splFileObject)
--FILE--
<?php
$x = new SplFileObject(__FILE__);
try {
$y=clone $x;
} catch (Error $e) {
var_dump($e->getMessage());
}
var_dump($y);
?>
--EXPECTF--
string(49) "An object of class SplFileObject cannot be cloned"
Notice: Undefined variable: y in %sbug72888.php on line %d
NULL
|