Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17199 программистов и 1833 робота. Сейчас ищут 1717 программистов ...
Example
Вернуться к: XML_Util
Example
Example – Example for the usage of XML_Util
The following examples shows how some of the methods of XML_Util have to be used.
Some basic examples
<?php
require_once "XML/Util.php";
// creating an XML tag
$tag = XML_Util::createTag("xsl:stylesheet", array("version" => "1.0"), "Place your content here", "http://www.w3.org/1999/XSL/Transform");
// verify tag name
$result = XML_Util::isValidName("my Tag");
if (PEAR::isError($result)) {
print "Invalid XML name: " . $result->getMessage();
} else {
print "Tagname is valid.";
}
?>
Вернуться к: XML_Util