定义和用法
XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 SimpleXMLElement 类表示 PHP 中的 XML 文档。
这个SimpleXMLElement::count()函数计算 XML 元素的子元素数。
用法
SimpleXMLElement::count();
参数
该函数不接受任何参数。
返回值
此函数返回一个整数值,表示 XML 元素的子元素数。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。
示例
以下示例演示了 SimpleXMLElement::count() 函数的用法。
<html>
<head>
<body>
<?php
$str = "<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name type = 'programming'>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
print("Number of child elements:".$xml->count());
?>
</body>
</head>
</html>
这将产生以下结果 -
Number of child elements:4
示例
在以下示例中,我们尝试读取 XML 文件的内容,该程序打印 XML 文件的记录数 -
data.xml:
<?xml version="1.0" encoding="utf-8"?> <Tutorials> <Tutorial> <Name>JavaFX</Name> <Pages>535</Pages> <Author>Krishna</Author> <Version>11</Version> </Tutorial> <Tutorial> <Name>CoffeeScript</Name> <Pages>235</Pages> <Author>Kasyap</Author> <Version>2.5.1</Version> </Tutorial> <Tutorial> <Name>OpenCV</Name> <Pages>150</Pages> <Author>Maruti</Author> <Version>3.0</Version> </Tutorial> </Tutorials>
sample.php:
<html> <head> <body> <?php $doc = new DOMDocument; $xml = simplexml_load_file("trail.xml"); //file to SimpleXMLElement $xml = simplexml_import_dom($xml); print("Number of child elements:".$xml->count()); ?> </body> </head> </html>
这将产生以下输出 -
Number of child elements:3
相关用法
- PHP SimpleXMLElement::xpath()用法及代码示例
- PHP SimpleXMLElement::getName()用法及代码示例
- PHP SimpleXMLElement::registerXPathNamespace()用法及代码示例
- PHP SimpleXMLElement::getDocNamespaces()用法及代码示例
- PHP SimpleXMLElement::getNameSpaces()用法及代码示例
- PHP SimpleXMLElement::__toString()用法及代码示例
- PHP SimpleXMLElement::__construct()用法及代码示例
- PHP SimpleXMLElement::addChild()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP SimpleXMLElement XPath()用法及代码示例
- PHP SimpleXMLElement addAttribute()用法及代码示例
- PHP SimpleXMLElement addChild()用法及代码示例
- PHP SimpleXMLElement attributes()用法及代码示例
- PHP SimpleXMLElement __toString()用法及代码示例
- PHP SimpleXMLElement asXML()用法及代码示例
- PHP SimpleXMLElement count()用法及代码示例
- PHP SimpleXMLElement registerXPathNamespace()用法及代码示例
- PHP SimpleXMLElement getNamespaces()用法及代码示例
- PHP SimpleXMLElement getDocNamespaces()用法及代码示例
- PHP SimpleXMLElement saveXML()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - SimpleXMLElement::count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。