-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.php
101 lines (67 loc) · 2.43 KB
/
examples.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
require 'DomCreator.php';
function printXml($domCreator)
{
$document = $domCreator->getDocument();
$document->formatOutput = true;
echo $document->saveXml();
}
###############################################################################
###############################################################################
$foo = DomCreator::create('http://example.com/foo', 'f', 'foo');
$foo->ident->_type = 'person';
$foo->ident->name = 'My Name';
$foo->ident->number = '1234';
$foo->content = 'Here is the content..';
$foo->show->that->nesting->is->easy;
printXml($foo);
###############################################################################
###############################################################################
$bar = DomCreator::createNoNamespace('Bar');
$bar->One = 1;
$bar->Two = 2;
$bar->Three = 3;
$subBar = DomCreator::createFragmentNoNamespace();
foreach (array('A', 'B', 'C') as $letter)
{
$subBar->$letter = "Letter $letter";
}
$bar->Sub = $subBar;
$dom = new DOMDocument();
$dom->appendChild($dom->createElement('Test', 'value'));
$bar->DomPart = $dom;
printXml($bar);
###############################################################################
###############################################################################
$dom = new DOMDocument();
$test = $dom->createElement('test', 'value');
$dom->appendChild($test);
$attr = $dom->createAttribute('attr');
$attr->value = 1;
$test->appendChild($attr);
$super = DomCreator::create('http://test.com/test', 'tst', 'element');
$super->hello = 'world';
$super->hello->_to = 'you';
$super->dom = $dom;
printXml($super);
###############################################################################
###############################################################################
$rep = DomCreator::createNoNamespace('Numbers');
foreach (range(3, 17, 7) as $n)
{
$rep->Number->Value = $n;
$rep->Number->Even = $n % 2 === 0 ? 'Yes' : 'No';
$rep->Number->Hash = md5($n);
$rep->closeChild();
}
printXml($rep);
###############################################################################
###############################################################################
$foo = DomCreator::create('http://example.com/foo', 'f', 'foo');
$type = '_a:type';
$foo->ident->$type = 'person';
$foo->ident->__set('_xmlns:a', 'http://example.com/types');
$foo->ident->name = 'My Name';
$foo->ident->number = '1234';
$foo->content = 'Here is the content..';
printXml($foo);