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
<?php

/**
* Example to dumping data into XML using Stream_Iterate as stream
*
* PHP version 5
*
* @category Stream
* @package Stream_Iterate
* @author Philippe Jausions <Philippe.Jausions@11abacus.com>
* @copyright 2008 11abacus / Philipe 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';

/**
* Prints the XML header
*
* @param mixed $data Data of first iteration
*
* @return string XML string
*/
function myXMLFormatStart($data)
{
return '<?xml version="1.0"?><dataset>';
}

/**
* Defines an XML "printer"
*
* @param array $value List of data to print out
* @param integer $iteration Iteration counter (zero-based)
*
* @return string XML string
*/
function myXMLFormat(array $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
*/
function myXMLFormatEnd($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,
'onFirst' => 'myXMLFormatStart', // Called just before data start to be read
'toString' => 'myXMLFormat', // Called to format data into string
'onLast' => 'myXMLFormatEnd', // Called just after the last data is read
),
));

echo file_get_contents('foreach://value@data', $flag, $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

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: 2167 bytes, 90 lines
Powered by Google Project Hosting