My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
99
100
101
102
103
104
105
106
<?php

/**
* Example to dumping data into XML using Stream_Iterate as stream
* and a formatter class
*
* PHP version 5
*
* @category Stream
* @package Stream_Iterate
* @author Philippe Jausions <Philippe.Jausions@11abacus.com>
* @copyright 2008 11abacus / Philippe Jausions
* @license http://www.opensource.org/licenses/bsd-license.php New BSD
* @link http://pear.11abacus.com/package/Stream_Iterate
*/

/**
* Required packages
*/
require_once 'Stream/Iterate.php';
require_once 'Stream/Iterate/FormatterInterface.php';

/**
* Formatter helper class
*/
class myXMLFormat implements Stream_Iterate_FormatterInterface
{
/**
* Prints the XML header
*
* @param mixed $data Data of the first iteration
*
* @return string XML string
*/
public function onFirstIteration($data)
{
return '<?xml version="1.0"?><dataset>';
}

/**
* Defines an XML "printer"
*
* @param mixed $key Key of iteration
* @param array $value Value of iteration
* @param integer $iteration Iteration counter (zero-based)
*
* @return string XML string
*/
public function formatKeyPair($key, $value, $iteration)
{
if (empty($value)) {
return '';
}
$xml = '<set counter="'.$iteration.'">';
foreach ($value as $header => $data) {
$xml .= '<'.$header.'>'
.htmlspecialchars($data)
.'</'.$header.'>';
}
return $xml."</set>\n";
}

/**
* Prints the XML footer
*
* @param integer $iteration Last iteration count
*
* @return string XML string
*/
public function onLastIteration($iteration)
{
return '</dataset>';
}
}

/**
* Main
*/
stream_wrapper_register('foreach', 'Stream_Iterate');

$data = array(array('firstname' => 'John',
'lastname' => 'Doe',
'city' => 'Towneville'),
array('lastname' => 'Doe',
'city' => 'Citybourg',
'firstname' => 'Jane'));

$context = stream_context_create(array('foreach' => array('data' => $data)));

// By specifying the class name of the formatter, an instance will be
// created automatically...
echo file_get_contents('foreach://data?formatter=myXMLFormat', 0, $context);

echo "\n\n";

// ...otherwise, specify the formatter instance in the context.
$context = stream_context_create(array(
'foreach' => array(
'data' => $data,
'formatter' => new myXMLFormat(),
)
));

echo file_get_contents('foreach://data', 0, $context);

?>

Change log

r7 by jausions on May 13, 2008   Diff
+ Added 2 tests
+ Updated license URL
Go to: 
Project members, sign in to write a code review

Older revisions

r6 by jausions on May 13, 2008   Diff
Updated test suite
r5 by jausions on May 13, 2008   Diff
 + Created a FormatterInterface to
encapsulate formatting methods
 + Added examples
 + Rename "callback" context option to
"toString"
...
All revisions of this file

File info

Size: 2738 bytes, 106 lines
Powered by Google Project Hosting