/PHP-5.3/ext/dom/tests/ |
H A D | DOMCharacterData_data_basic_002.phpt | 11 $document = new DOMDocument; 12 $root = $document->createElement('root'); 13 $document->appendChild($root); 15 $cdata = $document->createCDATASection('t'); 17 print $document->saveXML()."\n"; 20 print $document->saveXML()."\n";
|
H A D | DOMNode_replaceChild_basic.phpt | 10 $document = new DOMDocument(); 11 $document->loadXML('<?xml version="1.0" encoding="utf-8"?> 16 $parent = $document->getElementsByTagName('foo')->item(0); 17 $new_child = $document->createElement('qux'); 19 echo "New child replaces old child:\n" . $document->saveXML(); 23 $parent = $document->getElementsByTagName('spam')->item(0); 25 echo "Existing child is removed from tree:\n" . $document->saveXML(); 28 $new_child = $document->getElementsByTagName('spam')->item(0); 29 $parent = $document->getElementsByTagName('foo')->item(0); 31 echo "Children are inserted in order:\n" . $document->saveXML();
|
H A D | DOMDocumentFragment_appendXML_basic_001.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $fragment = $document->createDocumentFragment(); 18 print $document->saveXML();
|
H A D | DOMCharacterData_appendData_basic.phpt | 11 $document = new DOMDocument; 12 $root = $document->createElement('root'); 13 $document->appendChild($root); 15 $cdata = $document->createElement('cdata'); 18 $cdatanode = $document->createCDATASection(''); 28 echo "\n" . $document->saveXML();
|
H A D | DOMComment_appendData_basic_Sullivan.phpt | 11 $document = new DOMDocument; 12 $root = $document->createElement('root'); 13 $document->appendChild($root); 15 $comment = $document->createElement('comment'); 18 $commentnode = $document->createComment(''); 28 echo "\n" . $document->saveXML();
|
H A D | DOMText_appendData_basic.phpt | 11 $document = new DOMDocument; 12 $root = $document->createElement('root'); 13 $document->appendChild($root); 15 $text = $document->createElement('text'); 18 $textnode = $document->createTextNode(''); 28 echo "\n" . $document->saveXML();
|
H A D | DOMCharacterData_substringData_basic_001.phpt | 11 $document = new DOMDocument; 12 $root = $document->createElement('root'); 13 $document->appendChild($root); 15 $cdata = $document->createCDATASection('testfest');
|
H A D | DOMCharacterData_deleteData_basic_001.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $cdata = $document->createCDATASection('test');
|
H A D | DOMCharacterData_appendData_error_001.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $cdata = $document->createCDATASection('test');
|
H A D | DOMCharacterData_deleteData_error_001.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $cdata = $document->createCDATASection('test');
|
H A D | DOMCharacterData_insertData_error_001.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $cdata = $document->createCDATASection('test');
|
H A D | DOMCharacterData_replaceData_error_001.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $cdata = $document->createCDATASection('test');
|
H A D | DOMDocumentFragment_appendXML_error_003.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $fragment = $document->createDocumentFragment();
|
H A D | DOMAttr_ownerElement_error_001.phpt | 11 $document = new DOMDocument; 12 $root = $document->createElement('root'); 13 $document->appendChild($root); 15 $document->removeChild($root);
|
H A D | DOMCharacterData_deleteData_error_002.phpt | 10 $document = new DOMDocument; 11 $root = $document->createElement('root'); 12 $document->appendChild($root); 14 $cdata = $document->createCDATASection('test');
|
H A D | DOMDocument_preserveWhiteSpace_variations.phpt | 11 echo "Load document with preserveWhiteSpace on\n"; 17 echo "\nLoad document with preserveWhiteSpace off\n"; 25 Load document with preserveWhiteSpace on 38 Load document with preserveWhiteSpace off
|
/PHP-5.3/ext/dom/ |
H A D | document.c | 531 if (obj->document) { in dom_document_strict_error_checking_read() 552 if (obj->document) { in dom_document_strict_error_checking_write() 574 if (obj->document) { in dom_document_format_output_read() 595 if (obj->document) { in dom_document_format_output_write() 616 if (obj->document) { in dom_document_validate_on_parse_read() 637 if (obj->document) { in dom_document_validate_on_parse_write() 658 if (obj->document) { in dom_document_resolve_externals_read() 679 if (obj->document) { in dom_document_resolve_externals_write() 700 if (obj->document) { in dom_document_preserve_whitespace_read() 721 if (obj->document) { in dom_document_preserve_whitespace_write() [all …]
|
H A D | xml_common.h | 32 php_libxml_ref_obj *document; member 73 if (__intern->document != NULL) { \ 74 if (!(__ptr = (__prtype)__intern->document->ptr)) { \
|
H A D | php_dom.h | 73 php_libxml_ref_obj *document; member 98 dom_doc_propsptr dom_get_doc_props(php_libxml_ref_obj *document); 104 int dom_get_strict_error(php_libxml_ref_obj *document); 125 int dom_set_doc_classmap(php_libxml_ref_obj *document, zend_class_entry *basece, zend_class_entry *…
|
/PHP-5.3/ext/xsl/tests/ |
H A D | prepare.inc | 5 echo "Error while parsing the document\n"; 11 echo "Error while parsing the document\n";
|
H A D | bug26384.phpt | 10 echo "Error while parsing the document\n"; 16 echo "Error while parsing the document\n";
|
/PHP-5.3/ext/libxml/ |
H A D | libxml.c | 971 if (object->document != NULL) { in php_libxml_increment_doc_ref() 972 object->document->refcount++; in php_libxml_increment_doc_ref() 973 ret_refcount = object->document->refcount; in php_libxml_increment_doc_ref() 977 object->document->ptr = docp; in php_libxml_increment_doc_ref() 978 object->document->refcount = ret_refcount; in php_libxml_increment_doc_ref() 979 object->document->doc_props = NULL; in php_libxml_increment_doc_ref() 992 if (object->document->ptr != NULL) { in php_libxml_decrement_doc_ref() 995 if (object->document->doc_props != NULL) { in php_libxml_decrement_doc_ref() 1000 efree(object->document->doc_props); in php_libxml_decrement_doc_ref() 1002 efree(object->document); in php_libxml_decrement_doc_ref() [all …]
|
/PHP-5.3/ext/soap/tests/schema/ |
H A D | schema071.phpt | 2 SOAP XML Schema 71: SOAP 1.1 Array (document style) 17 test_schema($schema,'type="tns:testType"',array(123,123.5),'document','literal');
|
H A D | schema072.phpt | 2 SOAP XML Schema 72: SOAP 1.1 Array (document style, element with inline type) 19 test_schema($schema,'element="tns:testElement"',array(123,123.5),'document','literal');
|
/PHP-5.3/ext/soap/tests/bugs/ |
H A D | bug40609.wsdl | 26 …document" /><wsdl:operation name="update"><soap:operation soapAction="urn:update" style="document"…
|