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
|
<?php // $Rev: 174 $ error_reporting(E_ALL); include_once('../simple_html_dom.php');
$dir = './html/';
$files = array( array('name'=>'empty.htm', 'url'=>''), array('name'=>'smarty_1.htm', 'url'=>'guestbook.tpl'), array('name'=>'smarty_2.htm', 'url'=>'guestbook_form.tpl'), array('name'=>'google.htm', 'url'=>'http://www.google.com/'), array('name'=>'senate.htm', 'url'=>'http://www.senate.gov/legislative/LIS/roll_call_lists/roll_call_vote_cfm.cfm?congress=101&session=2&vote=00317'), array('name'=>'cyberciti.htm', 'url'=>'http://www.cyberciti.biz/tips/configure-ubuntu-grub-to-load-freebsd.html'), array('name'=>'myspace.htm', 'url'=>'http://www.myspace.com/'), array('name'=>'mootools.htm', 'url'=>'http://www.mootools.net/'), array('name'=>'jquery.htm', 'url'=>'http://jquery.com/'), array('name'=>'scriptaculo.htm', 'url'=>'http://script.aculo.us/'), array('name'=>'apache.htm', 'url'=>'http://www.apache.org/'), array('name'=>'microsoft.htm', 'url'=>'http://www.microsoft.com/'), array('name'=>'slashdot.htm', 'url'=>'http://www.slashdot.org/'), array('name'=>'ror.htm', 'url'=>'http://www.rubyonrails.org/'), array('name'=>'yahoo.htm', 'url'=>'http://www.yahoo.com/'), array('name'=>'phpbb.htm', 'url'=>'http://www.phpbb.com/'), array('name'=>'python.htm', 'url'=>'http://www.python.org/'), array('name'=>'lua.htm', 'url'=>'http://www.lua.org/'), array('name'=>'php.htm', 'url'=>'http://www.php.net/'), array('name'=>'ibm.htm', 'url'=>'http://www.ibm.com/'), array('name'=>'java.htm', 'url'=>'http://java.sun.com/'), array('name'=>'flickr.htm', 'url'=>'http://www.flickr.com/tour/upload/'), array('name'=>'amazon.htm', 'url'=>'http://www.amazon.com/'), array('name'=>'youtube.htm', 'url'=>'http://www.youtube.com/watch?v=kib05Ip6GSo&feature=bz302'), );
echo 'memory: '.memory_get_usage().'<br>'; $dom = new simple_html_dom;
foreach($files as $f) { // get file from url if($f['url']!='') file_put_contents($dir.$f['name'], file_get_contents($f['url'])); else file_put_contents($dir.$f['name'], '');
$start = microtime(); $dom->load(file_get_contents($dir.$f['name']), false); list($eu, $es) = explode(' ', microtime()); list($bu, $bs) = explode(' ', $start); echo sprintf('(%.1f)', ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000).'<br>'; if (file_get_contents($dir.$f['name'])!=$dom->save()) { echo "[<font color='red'>failed</font>] ".$f['name']."<br>"; $dom->save($dir.$f['name'].'.error'); } else echo "[success] ".$f['name']."<br>";
echo 'memory: '.memory_get_usage().'<br>';
flush(); set_time_limit(0); }
$dom->clear(); unset($dom); echo '<br>memory: '.memory_get_usage().'<br>';
?>
|