Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
XML_Util::isValidName
Вернуться к: XML_Util
XML_Util::isValidName
XML_Util::isValidName() – verify an XML name
Synopsis
require_once 'XML/Util.php';
boolean XML_Util::isValidName ( string $string )
Checks, whether a string is a valid XML name. In XML the names of tags and attributes must follow strict rules. This method can be used to validate the names you are using.
Parameter
-
string $string - string to be checked
Return value
Returns TRUE on success, PEAR_Error on failure.
Note
This function should be called statically.
Вернуться к: XML_Util