-=[ Mr. Bumblebee ]=-
_Indonesia_
| Path : /usr/src/php/ext/dom/tests/ |
|
|
| Current File : //usr/src/php/ext/dom/tests/DOMCharacterData_substringData_basic_001.phpt |
--TEST--
__DOMCharacterData::substringData pull mid section of string
--CREDITS--
Nic Rosental nicrosental@gmail.com
# TestFest Atlanta 2009-5-28
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$document = new DOMDocument;
$root = $document->createElement('root');
$document->appendChild($root);
$cdata = $document->createCDATASection('testfest');
$root->appendChild($cdata);
print $cdata->substringData(1, 6);
?>
--EXPECT--
estfes
Copyright © 2017 || Recoded By Mr.Bumblebee