PHP xml_parser_create_ns() Function
Complete PHP XML Reference
Definition and Usage
The xml_parser_create_ns() function creates an XML parser with namespace
support.
This function returns a resource handle to be used by other XML functions on success, or FALSE on
failure.
Syntax
xml_parser_create_ns(encoding,separator)
|
| Parameter |
Description |
| encoding |
Optional. Specifies the output encoding. Default in PHP
5.0.2 and newer is UTF-8 Possible values:
- ISO-8859-1
- UTF-8
- US-ASCII.
Note: In PHP 5,
the input encoding is automatically detected. In PHP 4 and older versions,
this paramterer specifies the character encoding for the input and output.
Note: In PHP 5.0.0 and 5.0.1, default output charset is ISO-8859-1. |
| separator |
Optional. Specifies the output separator for tag name and
namespace. Default is " : " |
Tips and Notes
Tip: To
free the xml parser, use the xml_parser_free() function.
Tip: To create an XML parser without namespace support, use the
xml_parser_create() function
instead.
Example
<?php
$xmlparser = xml_parser_create_ns();
xml_parser_free($xmlparser);
?>
|
Complete PHP XML Reference
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |

|
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |

|
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Promote collaboration among coworkers in your organization through project workspaces where others can efficiently find information and work together |

|
Personalize your company profile by bookmarking and organizing favorite content, uploading assets, posting photos, blogging, and more |

|
Interact with features like tagging, flagging, wikis and ratings found in the Web 2.0 Toolbox |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide. Request an
INSTANT DEMO or download a
FREE TRIAL today. |
|