PHP xml_parser_create_ns() Function
In this chapter you will learn:
- Description for PHP xml_parser_create_ns() Function
- Syntax for PHP xml_parser_create_ns() Function
- Parameter for PHP xml_parser_create_ns() Function
- Return for PHP xml_parser_create_ns() Function
- Example - creates an XML parser with namespace support
Description
The xml_parser_create_ns() function creates an XML parser with namespace support.
Syntax
PHP xml_parser_create_ns() Function has the following syntax.
xml_parser_create_ns(encoding,separator)
Parameter
Parameter | Is Required | Description |
---|---|---|
encoding | Optional. | Output encoding. Default in PHP 5.0.2 and newer is UTF-8 |
separator | Optional. | Output separator for tag name and namespace. Default is " : " |
Possible values:
- ISO-8859-1
- UTF-8
- US-ASCII.
Return
This function returns a resource handle to be used by other XML functions on success, or FALSE on failure.
Example
Create an XML parser with namespace support
<?php//from j a v a 2s .co m
$xmlparser = xml_parser_create_ns();
xml_parser_free($xmlparser);
?>
Next chapter...
What you will learn in the next chapter:
- Description for PHP xml_parser_free() Function
- Syntax for PHP xml_parser_free() Function
- Parameter for PHP xml_parser_free() Function
- Return for PHP xml_parser_free() Function
- Example - frees an an XML parser
Home » PHP Tutorial » PHP XML Functions