Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17116 программистов и 1833 робота. Сейчас ищут 1664 программиста ...
XML_Unserializer::getRootName
Вернуться к: XML_Serializer
XML_Unserializer::getRootName
XML_Unserializer::getRootName() – get the name of the root tag of the parsed document.
Synopsis
require_once 'Unserializer.php';
string XML_Unserializer::getRootName ( )
This method will return the name of the root tag, after a document has been unserialized. This can be extremely useful when returning an array. You have to call XML_Unserializer::unserialize() first.
Return value
string name of the root tag
Throws
throws PEAR_Error object, if not document has been parsed.
Note
This function can not be called statically.
Вернуться к: XML_Serializer