blob: 05171dc79e57faead04919a8638f74c410b93e56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
Bug #78563: parsers should not be serializable
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
$parser = xml_parser_create();
serialize($parser);
?>
===DONE===
--EXPECTF--
Fatal error: Uncaught Exception: Serialization of 'XMLParser' is not allowed in %s:%d
Stack trace:
#0 %s(%d): serialize(Object(XMLParser))
#1 {main}
thrown in %s on line %d
|