mirror of
https://github.com/php/php-src.git
synced 2026-04-01 05:02:27 +02:00
34 lines
648 B
PHP
34 lines
648 B
PHP
--TEST--
|
|
Test property write errors
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
require_once("dom_test.inc");
|
|
|
|
$dom = new DOMDocument();
|
|
|
|
try {
|
|
$dom->nodeValue = [];
|
|
} catch (TypeError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
try {
|
|
$dom->nodeType += 1;
|
|
} catch (Error $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
try {
|
|
$dom->xmlEncoding = null;
|
|
} catch (Error $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Cannot assign array to property DOMNode::$nodeValue of type ?string
|
|
Cannot write read-only property DOMDocument::$nodeType
|
|
Cannot write read-only property DOMDocument::$xmlEncoding
|