mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

For rationale, see https://github.com/php/php-src/pull/6787 Make extension checks lowercase, add a special case for opcache that has internal name not matching .so filename. Extensions migrated in part 2: * dom * exif * fileinfo * ffi
37 lines
812 B
PHP
37 lines
812 B
PHP
--TEST--
|
|
DOMDocument::$validateOnParse - read/write tests (dom_document_validate_on_parse_read/dom_document_validate_on_parse_write)
|
|
--CREDITS--
|
|
Hans Zaunere
|
|
# TestFest 2009 NYPHP
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once('dom_test.inc');
|
|
|
|
$dom = new DOMDocument;
|
|
$dom->loadXML($xmlstr);
|
|
|
|
if( !$dom )
|
|
{
|
|
echo "Error while parsing the document\n";
|
|
exit;
|
|
}
|
|
|
|
echo "Checking documented default value: ";
|
|
var_dump($dom->validateOnParse);
|
|
|
|
$dom->validateOnParse = TRUE;
|
|
echo "Setting validateOnParse to TRUE: ";
|
|
var_dump($dom->validateOnParse);
|
|
|
|
$dom->validateOnParse = FALSE;
|
|
echo "Setting validateOnParse to FALSE: ";
|
|
var_dump($dom->validateOnParse);
|
|
|
|
?>
|
|
--EXPECT--
|
|
Checking documented default value: bool(false)
|
|
Setting validateOnParse to TRUE: bool(true)
|
|
Setting validateOnParse to FALSE: bool(false)
|