码迷,mamicode.com
首页 > Web开发 > 详细

simple_html_dom(4)

时间:2014-10-14 20:56:49      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:io   ar   strong   sp   on   cti   html   bs   htm   

How to dump contents of DOM object?

// Dumps the internal DOM tree back into string 
$str = $html->save();

// Dumps the internal DOM tree back into a file 
$html->save(‘result.htm‘);

How to customize the parsing behavior?

// Write a function with parameter "$element"
function my_callback($element) {
        // Hide all <b> tags 
        if ($element->tag==‘b‘)
                $element->outertext = ‘‘;


// Register the callback function with it‘s function name
$html->set_callback(‘my_callback‘);

// Callback function will be invoked while dumping
echo $html;

simple_html_dom(4)

标签:io   ar   strong   sp   on   cti   html   bs   htm   

原文地址:http://www.cnblogs.com/goAhead-hust/p/4025039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!