mirror of
https://github.com/php/php-src.git
synced 2026-04-26 17:38:14 +02:00
f3d1e9ed06
This version of libxml introduced quite a few changes. Most of them are differences in error reporting, while some also change behavior, e.g. null bytes are no longer supported and xinclude recursion is limited. Closes GH-7030. Closes GH-7046. Co-authored-by: Nikita Popov <nikic@php.net>
28 lines
617 B
PHP
28 lines
617 B
PHP
--TEST--
|
|
Bug #80268 (loadHTML() truncates at NUL bytes)
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
if (LIBXML_VERSION >= 20912) die('skip For libxml2 < 2.9.12 only');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$doc = new DOMDocument;
|
|
$doc->loadHTML("<p>foo\0bar</p>");
|
|
$html = $doc->saveHTML();
|
|
var_dump(strpos($html, '<p>foo</p>') !== false);
|
|
|
|
file_put_contents(__DIR__ . '/80268.html', "<p>foo\0bar</p>");
|
|
$doc = new DOMDocument;
|
|
$doc->loadHTMLFile(__DIR__ . '/80268.html');
|
|
$html = $doc->saveHTML();
|
|
var_dump(strpos($html, '<p>foo</p>') !== false);
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
unlink(__DIR__ . '/80268.html');
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|