Lines Matching refs:text
8 $dom = Dom\XMLDocument::createFromString('<container>text<?pi value?></container>');
10 echo "document text content: ";
20 $text = $container->firstChild;
21 $pi = $text->nextSibling;
23 echo "text node text content: ";
24 var_dump($text->textContent);
25 echo "pi node text content: ";
28 $text->textContent = NULL;
31 echo "text node text content: ";
32 var_dump($text->textContent);
33 echo "pi node text content: ";
41 document text content: NULL
43 text node text content: string(4) "text"
44 pi node text content: string(5) "value"
45 text node text content: string(0) ""
46 pi node text content: string(0) ""