mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
15 lines
337 B
PHP
15 lines
337 B
PHP
--TEST--
|
|
Bug #77569 (Write Access Violation in DomImplementation)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('dom')) die('skip dom extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$imp = new DOMImplementation;
|
|
$dom = $imp->createDocument("", "");
|
|
$dom->encoding = null;
|
|
?>
|
|
--EXPECTF--
|
|
Warning: main(): Invalid Document Encoding in %s on line %d
|