Class: PEAR_PackageFile_Generator_v2_XML_Util
Source Location: /PEAR-1.6.2/PEAR/PackageFile/Generator/v2.php
utility class for working with XML documents
Author(s):
Version:
|
|
Inherited Variables
|
Inherited Methods
|
Class Details
Method Detail
apiVersion [line 957]
attributesToString [line 1110]
string attributesToString(
array
$attributes, [boolean|array
$sort = true], [boolean
$multiline = false], [string
$indent = ' '], [string
$linebreak = "\n"], [integer
$entities = PEAR_PackageFile_Generator_v2_XML_Util_ENTITIES_XML])
|
|
create string representation of an attribute list require_once 'XML/Util.php';
// build an attribute string
$att = array(
"foo" => "bar",
"argh" => "tomato"
);
Parameters:
createCDataSection [line 1428]
string createCDataSection(
string
$data)
|
|
create a CData section require_once 'XML/Util.php';
// create a CData section
Parameters:
createComment [line 1407]
string createComment(
string
$content)
|
|
create an XML comment require_once 'XML/Util.php';
// create an XML start element:
Parameters:
createEndElement [line 1386]
string createEndElement(
string
$qname)
|
|
create an end element require_once 'XML/Util.php';
// create an XML start element:
Parameters:
createStartElement [line 1336]
string createStartElement(
string
$qname, [array
$attributes = array()], [string
$namespaceUri = null], [boolean
$multiline = false], [string
$indent = '_auto'], [string
$linebreak = "\n"])
|
|
create a start element require_once 'XML/Util.php';
// create an XML start element:
Parameters:
createTag [line 1192]
string createTag(
string
$qname, [array
$attributes = array()], [mixed
$content = null], [string
$namespaceUri = null], [integer
$replaceEntities = PEAR_PackageFile_Generator_v2_XML_Util_REPLACE_ENTITIES], [boolean
$multiline = false], [string
$indent = "_auto"], [string
$linebreak = "\n"], [string
$encoding = PEAR_PackageFile_Generator_v2_XML_Util_ENTITIES_XML])
|
|
create a tag This method will call PEAR_PackageFile_Generator_v2_XML_Util::createTagFromArray(), which is more flexible. require_once 'XML/Util.php';
// create an XML tag:
Parameters:
createTagFromArray [line 1251]
string createTagFromArray(
array
$tag, [integer
$replaceEntities = PEAR_PackageFile_Generator_v2_XML_Util_REPLACE_ENTITIES], [boolean
$multiline = false], [string
$indent = "_auto"], [string
$linebreak = "\n"], [
$encoding = PEAR_PackageFile_Generator_v2_XML_Util_ENTITIES_XML])
|
|
create a tag from an array this method awaits an array in the following format array(
"qname" => $qname // qualified name of the tag
"namespace" => $namespace // namespace prefix (optional, if qname is specified or no namespace)
"localpart" => $localpart, // local part of the tagname (optional, if qname is specified)
"attributes" => array(), // array containing all attributes (optional)
"content" => $content, // tag content (optional)
"namespaceUri" => $namespaceUri // namespaceUri for the given namespace (optional)
) require_once 'XML/Util.php';
$tag = array(
"qname" => "foo:bar",
"namespaceUri" => "http://foo.com",
"attributes" => array( "key" => "value", "argh" => "fruit&vegetable" ),
"content" => "I'm inside the tag",
);
// creating a tag with qualified name and namespaceUri
Parameters:
getDocTypeDeclaration [line 1066]
string getDocTypeDeclaration(
string
$root, [string
$uri = null], [string
$internalDtd = null])
|
|
build a document type declaration require_once 'XML/Util.php';
// get a doctype declaration:
Parameters:
getXMLDeclaration [line 1031]
string getXMLDeclaration(
[string
$version = "1.0"], [string
$encoding = null], [
$standalone = null], boolean
$standAlone)
|
|
build an xml declaration require_once 'XML/Util.php';
// get an XML declaration:
Parameters:
isValidName [line 1497]
mixed isValidName(
string
$string)
|
|
check, whether string is valid XML name XML names are used for tagname, attribute names and various other, lesser known entities. An XML name may only consist of alphanumeric characters, dashes, undescores and periods, and has to start with a letter or an underscore. require_once 'XML/Util.php';
// verify tag name
print "Invalid XML name: " . $result->getMessage();
}
Parameters:
raiseError [line 1523]
replacement for PEAR_PackageFile_Generator_v2_XML_Util::raiseError Avoids the necessity to always require PEAR.php
Parameters:
replaceEntities [line 981]
string replaceEntities(
string
$string, [integer
$replaceEntities = PEAR_PackageFile_Generator_v2_XML_Util_ENTITIES_XML])
|
|
replace XML entities With the optional second parameter, you may select, which entities should be replaced. require_once 'XML/Util.php';
// replace XML entites:
Parameters:
splitQualifiedName [line 1456]
array splitQualifiedName(
string
$qname, [string
$defaultNs = null])
|
|
split qualified name and return namespace and local part require_once 'XML/Util.php';
// split qualified tag
the returned array will contain two elements:
array(
"namespace" => "xslt",
"localPart" => "stylesheet"
);
Parameters:
Documentation generated on Mon, 11 Mar 2019 15:09:38 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|
|