1
0
mirror of https://github.com/php/php-src.git synced 2026-04-06 23:53:30 +02:00
Files
archived-php-src/ext/dom/tests/bug52656.phpt

15 lines
311 B
PHP

--TEST--
Bug #52656 (DOMCdataSection does not work with splitText).
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$CData = new DOMCdataSection('splithere!');
$CDataSplit = $CData->splitText(5);
var_dump($CDataSplit, $CDataSplit->data);
?>
--EXPECT--
object(DOMText)#2 (0) {
}
string(5) "here!"