mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
6d2bc72530
libxml2 has no particular issues parsing HTML strings with NUL bytes; these just cause truncation of the current text content, but parsing continues generally. Since `::loadHTMLFile()` already supports NUL bytes, `::loadHTML()` should as well. Note that this is different from XML, which does not allow any NUL bytes. Closes GH-6368.
25 lines
549 B
PHP
25 lines
549 B
PHP
--TEST--
|
|
Bug #80268 (loadHTML() truncates at NUL bytes)
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--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)
|