17 lines
307 B
PHP
17 lines
307 B
PHP
--TEST--
|
|
Bug #77569 (Write Access Violation in DomImplementation)
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$imp = new DOMImplementation;
|
|
$dom = $imp->createDocument("", "");
|
|
try {
|
|
$dom->encoding = null;
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . \PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Invalid document encoding
|