1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2024-09-19 11:36:42 -04:00
xlxd/dashboard/pgs/class.parsexml.php
2017-01-24 08:45:11 +01:00

30 lines
983 B
PHP
Executable File

<?php
class ParseXML {
public function __construct() {
return true;
}
public function GetElement($InputString, $ElementName) {
if (strpos($InputString, "<".$ElementName.">") === false) return false;
if (strpos($InputString, "</".$ElementName.">") === false) return false;
$Element = substr($InputString, strpos($InputString, "<".$ElementName.">")+strlen($ElementName)+2, strpos($InputString, "</".$ElementName.">")-strpos($InputString, "<".$ElementName.">")-strlen($ElementName)-2);
return $Element;
}
public function GetAllElements($InputString, $ElementName) {
$Elements = array();
while (strpos($InputString, $ElementName) !== false) {
$Elements[] = $this->GetElement($InputString, $ElementName);
$InputString = substr($InputString, strpos($InputString, "</".$ElementName.">")+strlen($ElementName)+3, strlen($InputString));
}
return $Elements;
}
}
?>