本文整理匯總了PHP中XMLParser::fetchNodesAsObjects方法的典型用法代碼示例。如果您正苦於以下問題:PHP XMLParser::fetchNodesAsObjects方法的具體用法?PHP XMLParser::fetchNodesAsObjects怎麽用?PHP XMLParser::fetchNodesAsObjects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XMLParser
的用法示例。
在下文中一共展示了XMLParser::fetchNodesAsObjects方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Exception
throw new Exception('Invalid node name.');
}
$nodeCounter = 0;
foreach ($this->xml as $node) {
$nodeCounter++;
}
return $nodeCounter;
}
}
//get event information from XML and store information in array. Filter by host name
$xmlfile = "../../../xml/itproducts/index.xml";
try {
// instantiate new 'XMLParser' object
$xmlPar = new XMLParser($xmlfile);
// fetch nodes as array of objects
$nodes = $xmlPar->fetchNodesAsObjects();
// display nodes
$data = array();
foreach ($nodes as $node) {
$bits = explode(",", (string) $node->productcategory);
$data[] = array("Name" => (string) $node->productname, "Availability" => (string) $node->productavailability, "Version" => (string) $node->productversion, "Description" => (string) $node->productdescription, "MainDescription" => (string) $node->productdescription, "ProductID" => (string) $node->productid, "Sub-category" => trim($bits[1]));
}
} catch (Exception $e) {
echo $e->getMessage();
exit;
}
$category = array();
if (is_array($data)) {
$i = 0;
foreach ($data as $key => $array) {
$i++;