Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18755 программистов и 1632 робота. Сейчас ищет 1671 программист ...
XML_Statistics::countTagsInDepth
Вернуться к: XML_Statistics
XML_Statistics::countTagsInDepth
XML_Statistics::countTagsInDepth() – count the tags in a certain depth
Synopsis
require_once 'XML/Statistics.php';
integer XML_Statistics::counttagsindepth ( integer $depth )
Thru nesting a tag can be at a certain depth. The root tag is at depth zero. By counting the amount of tags in a depth you can count the number of recordsets in an XML document.
Parameter
-
integer $depth - tag depth (0 is root)
Return value
integer number of tags in this depth
Note
This function can not be called statically.
Вернуться к: XML_Statistics