Following codes scrap all fields which contains data in child 0 and child 1.
This script scrap td fields and convert it into xml tags but it returns a field which contains data on child1 but nothing in child 0. How can I put this data inside tags?
item1= <background>data here</background>
item2= data here but no <></> tags
here is the code:
$html = file_get_html($url) ;
foreach($html->find('table [cellspacing=3] tr') as $e) {
$children = $e->children();;
$size = count($children) ;
if($size >= 1) {
if(($children[0] != null) && ($children[0] != '') && ($children[0] != ' ')){
preg_match_all("/[a-z]+/i", ($children[0]->children(0)->plaintext), $match);
}
$tag = implode('_', $match[0]);
if($children[1] != null){
preg_match_all("/[a-z]+/i", ($children[1]->children(0)->plaintext), $result);
$value = implode(' ', $result[0]);
}
else{ $value = '';}
$XML .= createXMLtags($tag,$value);
}
}
return htmlspecialchars_decode(CleanResult($XML));
}