PHP xml_parser_create_ns() Function

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

ParameterIs RequiredDescription
encodingOptional.Output encoding. Default in PHP 5.0.2 and newer is UTF-8
separatorOptional.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  w w  w.java  2 s.  c o  m*/
$xmlparser = xml_parser_create_ns();

xml_parser_free($xmlparser);
?>




















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions