Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml_set_end_namespace_decl_handler(3) [php man page]

XML_SET_END_NAMESPACE_DECL_HANDLER(3)					 1				     XML_SET_END_NAMESPACE_DECL_HANDLER(3)

xml_set_end_namespace_decl_handler - Set up end namespace declaration handler

SYNOPSIS
bool xml_set_end_namespace_decl_handler (resource $parser, callable $handler) DESCRIPTION
Set a handler to be called when leaving the scope of a namespace declaration. This will be called, for each namespace declaration, after the handler for the end tag of the element in which the namespace was declared. PARAMETERS
o $parser - A reference to the XML parser. o $handler -$handler is a string containing the name of a function that must exist when xml_parse(3) is called for $parser. The function named by $handler must accept two parameters, and should return an integer value. If the value returned from the handler is FALSE (which it will be if no value is returned), the XML parser will stop parsing and xml_get_error_code(3) will return XML_ERROR_EXTERNAL_ENTITY_HANDLING. handler (resource $parser, string $prefix) o $parser - The first parameter, parser, is a reference to the XML parser calling the handler. o $prefix - The prefix is a string used to reference the namespace within an XML object. If a handler function is set to an empty string, or FALSE, the handler in question is disabled. Note Instead of a function name, an array containing an object reference and a method name can also be supplied. RETURN VALUES
Returns TRUE on success or FALSE on failure. NOTES
Note This event is not supported under LibXML. SEE ALSO
xml_set_start_namespace_decl_handler(3). PHP Documentation Group XML_SET_END_NAMESPACE_DECL_HANDLER(3)

Check Out this Related Man Page

XML_SET_CHARACTER_DATA_HANDLER(3)					 1					 XML_SET_CHARACTER_DATA_HANDLER(3)

xml_set_character_data_handler - Set up character data handler

SYNOPSIS
bool xml_set_character_data_handler (resource $parser, callable $handler) DESCRIPTION
Sets the character data handler function for the XML parser $parser. PARAMETERS
o $parser - A reference to the XML parser to set up character data handler function. o $handler -$handler is a string containing the name of a function that must exist when xml_parse(3) is called for $parser. The function named by $handler must accept two parameters: handler (resource $parser, string $data) o $parser - The first parameter, parser, is a reference to the XML parser calling the handler. o $data - The second parameter, $data, contains the character data as a string. Character data handler is called for every piece of a text in the XML document. It can be called multiple times inside each frag- ment (e.g. for non-ASCII strings). If a handler function is set to an empty string, or FALSE, the handler in question is disabled. Note Instead of a function name, an array containing an object reference and a method name can also be supplied. RETURN VALUES
Returns TRUE on success or FALSE on failure. PHP Documentation Group XML_SET_CHARACTER_DATA_HANDLER(3)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

When is SIGCHLD is raised.

Hi, I have 2 processes X and Y. Y is exec() from X. In Y i have an exit handler, which is called when i return from main. With in exit handler i delete and object which in turn calls the destructor of the object, which terminates all the threads of Y. I believe that SIGCHLD is raised by Y as... (4 Replies)
Discussion started by: supersumanth
4 Replies

2. Shell Programming and Scripting

New to shellscripting....need some help!

I have 3 shell scripts below.... I need to write a command line parser for these 3 utilities. basically the parser will accept ANY number of commands in this syntax -r = right -f = findtext -c = count so you do something like mu.s -r 3 4 5 -f hello goodbye.txt -c *.c -h 5 4 3 right... (5 Replies)
Discussion started by: TurboArkhan
5 Replies

3. HP-UX

flex++ parser for HP-UX11

Hi, can anyone tell me were to download flex++ parser for HP-UX11 BR vasanth (1 Reply)
Discussion started by: vasanthan
1 Replies

4. AIX

IBM xlf "parser stack overflow" error

Hello, Does anybody know how to increase IBM xlf parser stack to get rid of the "parser stack overflow" error? Thanks Ping (1 Reply)
Discussion started by: luop0812
1 Replies

5. Programming

Anyone wanna write this?

Write a function named isPrime which accepts one integer parameter, say x. Have the function return TRUE if x is a prime. Otherwise, have it return FALSE. b) Write a program that keeps asking the user for an integer say k. As long as k is greater than 0, the program will call... (1 Reply)
Discussion started by: KyleBucket
1 Replies

6. Shell Programming and Scripting

Tnanames.ora parser

Dears How can I use shell to parser this file? PRI = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.0.3.7)(PORT = 1521)) (ADDRESS = (PROTOCOL = TCP)(HOST = 10.0.3.17)(PORT = 1521)) ) (CONNECT_DATA = (SERVER = DEDICATED) ... (6 Replies)
Discussion started by: eric0826
6 Replies