- <?php
- header( "content-type: application/xml; charset=utf-8" );
- $doc = new DOMDocument('1.0');
- // we want a nice output
- $doc->formatOutput = true;
- $root = $doc->createElement('book');
- $root = $doc->appendChild($root);
- $title = $doc->createElement('title');
- $title = $root->appendChild($title);
- $text = $doc->createTextNode('This is the title');
- $text = $title->appendChild($text);
- echo $doc->saveXML() . "\n";
- /* 출력
- <?xml version="1.0"?>
- <book>
- <title>This is the title</title>
- </book>
- */
- ?>
--------------------------------------------------------------------------------------------
public string DOMDocument::saveXML ([ DOMNode $node [, int $options ]] )
DOM 표현에서 XML 문서를 작성합니다.
이 기능은 일반적으로 새 DOM 문서를 구축 한 후 호출됩니다.
자세한 내용은 위 링크에 가시면 보실수 있습니다.
'php5 > 기본단계2문법' 카테고리의 다른 글
xml 문서 배열 반환 - SimpleXMLElement simplexml_load_string ( string $data ) (0) | 2014.01.17 |
---|---|
JSON 문자열 배열 반환 - mixed json_decode ( string $json ) (0) | 2014.01.17 |
JSON 표현 문자열 반환 - string json_encode ( mixed $value ) (0) | 2014.01.17 |
출력 버퍼링(Output Buffering) - bool ob_start (), bool ob_end_flush ( void ) (0) | 2014.01.17 |
$_SESSION 기능 - bool session_start ( void ) (0) | 2014.01.17 |