public
Description: Alpha repository for DUI.Stream. When it stabilizes, it will be merged back into DUI.
Homepage:
Clone URL: git://github.com/digg/stream.git
stream / testImageData.php
100644 17 lines (11 sloc) 0.274 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
 
header('MIME-Version: 1.0');
header('Content-Type: multipart/mixed; boundary="|||"');
 
 
$imgFile = file_get_contents('img/32x32-digg-guy.gif');
 
for($i = 0; $i < 300 ; $i++) {
    echo "--|||
Content-Type: image/gif
" . base64_encode($imgFile);
}
 
echo '--|||--';
 
?>