Lines Matching refs:xml
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
46 if (preg_match("/error/i",$xml)){return NULL;}
47 return $xml;
54 function GetSummaryItem($item,&$xml){ argument
55 preg_match('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
59 function GetSummaryItems($item,&$xml){ argument
60 preg_match_all('/"'.$item.'"[^>]*>([^<]+)/',$xml,$m);
64 function GetSearchItem($item,&$xml){ argument
65 preg_match("/<".$item.">([^<]+?)</",$xml,$m);
69 function GetSearchItems($item,&$xml){ argument
70 preg_match_all("/<".$item.">([^<]+?)</",$xml,$m);