[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: testBasic_createTag.phpt
File is not writable. Editing disabled.
--TEST-- XML_Util::createTag() basic tests --CREDITS-- Chuck Burgess <ashnazg@php.net> # created for v1.2.0a1 2008-05-04 --FILE-- <?php require_once 'XML' . DIRECTORY_SEPARATOR . 'Util.php'; echo '=====XML_Util::createTag() basic tests=====' . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar") ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute and content" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag" ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, and namespace" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag", "http://www.w3c.org/myNs#" ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, and REPLACE_ENTITIES" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, and CDATA_SECTION" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_CDATA_SECTION ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, and multiline = false" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES, false ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, and multiline = true" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES, true ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, and indent = (2 spaces)" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES, true, ' ' ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, indent = (2 spaces), and linebreak = '^'" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES, true, ' ', '^' ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, indent = (2 spaces), linebreak = '^', and sortAttributes = true" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar", "boo" => "baz"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES, true, ' ', '^', true ) . PHP_EOL . PHP_EOL; echo "TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, indent = (2 spaces), linebreak = '^', and sortAttributes = false" . PHP_EOL; echo XML_Util::createTag( "myNs:myTag", array("foo" => "bar", "boo" => "baz"), "This is inside the tag and has < & @ > in it", "http://www.w3c.org/myNs#", XML_UTIL_REPLACE_ENTITIES, true, ' ', '^', false ) . PHP_EOL . PHP_EOL; ?> --EXPECT-- =====XML_Util::createTag() basic tests===== TEST: tag with attribute <myNs:myTag foo="bar" /> TEST: tag with attribute and content <myNs:myTag foo="bar">This is inside the tag</myNs:myTag> TEST: tag with attribute, content, and namespace <myNs:myTag foo="bar" xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag</myNs:myTag> TEST: tag with attribute, content, namespace, and REPLACE_ENTITIES <myNs:myTag foo="bar" xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag> TEST: tag with attribute, content, namespace, and CDATA_SECTION <myNs:myTag foo="bar" xmlns:myNs="http://www.w3c.org/myNs#"><![CDATA[This is inside the tag and has < & @ > in it]]></myNs:myTag> TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, and multiline = false <myNs:myTag foo="bar" xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag> TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, and multiline = true <myNs:myTag foo="bar" xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag> TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, and indent = (2 spaces) <myNs:myTag foo="bar" xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag> TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, indent = (2 spaces), and linebreak = '^' <myNs:myTag foo="bar"^ xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag> TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, indent = (2 spaces), linebreak = '^', and sortAttributes = true <myNs:myTag boo="baz"^ foo="bar"^ xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag> TEST: tag with attribute, content, namespace, REPLACE_ENTITIES, multiline = true, indent = (2 spaces), linebreak = '^', and sortAttributes = false <myNs:myTag foo="bar"^ boo="baz"^ xmlns:myNs="http://www.w3c.org/myNs#">This is inside the tag and has < & @ > in it</myNs:myTag>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 690.79 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A