Sponsored Content
Full Discussion: flex++ parser for HP-UX11
Operating Systems HP-UX flex++ parser for HP-UX11 Post 302193313 by andryk on Friday 9th of May 2008 03:46:52 AM
Old 05-09-2008
Hi,
Try flex-2.5.35 its flex but it surely contains flex++ ... well hopefully Smilie
 

9 More Discussions You Might Find Interesting

1. HP-UX

rsync for HP-UX11.0

Was using rsync for Hp-UX 10.20, would like to find out is it available for HP-UX 11. If not is that anything equivalent for HP-UX11.0. I am trying to sync the content of 2 folders. Thanks alot for any help! (2 Replies)
Discussion started by: gelbvonn
2 Replies

2. Shell Programming and Scripting

migration from hp-ux11.11 to hp-ux 11.23

Hi all Can any one guide me what changes may occur with this OS version migration. If you could give some links, that would be helpful too. Regards, Ranj (2 Replies)
Discussion started by: ranj@chn
2 Replies

3. UNIX for Advanced & Expert Users

Issues getting FLEX up in HP-UX 11

Hi, I am trying to install FLEX in HP-UX 11 and I am having issues in getting it up. After installing the FLEX I got from the HP-UX site for 11.11, it complained as missing libiconv.sl. Then I got the libiconv installed from the DEPOT got from HP-UX site and now its complaining as... (2 Replies)
Discussion started by: tobsinte
2 Replies

4. HP-UX

Verify Hardware installed HP-UX11

Hi - Basic question from newbie I need to find out how to verify hardware installed on HPUX server. Mid-range server - as in i need to prove to customer that a specific cpu is installed, so much memory is installed, etc. PLEASE HELP. TA (16 Replies)
Discussion started by: hoffies
16 Replies

5. HP-UX

rpm on HP-UX11

How to install rpm on HP-UX 11i best regards vasanth (3 Replies)
Discussion started by: vasanthan
3 Replies

6. HP-UX

RPM on hp-ux11.11 PARISC

Hi Im trying to build and install rpm on our hp-ux server, can you please tell me how this is achived....I have tried several ways its failing I have downloaded berkeley db and build on my system, when i have seen rpm source file i found berkelydb in that folder..Do i kneed to build again ... (2 Replies)
Discussion started by: vasanthan
2 Replies

7. News, Links, Events and Announcements

Hp-ux11.11_openmotif

Hello every one, i am attempting to install motif on HP-UX 11.11 ,which motif version i have to use for installation &where can i get that motif versin. pls provide the information like websites which are containing open motif to install it on HP-UX 11.11. IT'S VERY URGENT. any help... (3 Replies)
Discussion started by: mannam srinivas
3 Replies

8. Red Hat

flex installation problem

hi , when i run ./configure in wine-1.3.10 folder in midway i get error message Your flex version is too old. Please install flex version 2.5.33 or newer. but when i try to install flex using yum install flex it gives me message Package flex-2.5.4a-41.fc6.i386 already installed and latest... (1 Reply)
Discussion started by: anand121
1 Replies

9. AIX

World Wide Name (FLEX)

Does anyone know how to find the Worl Wide Name (WWN) on a IBM flex system ? (4 Replies)
Discussion started by: Tharsan
4 Replies
XML_SET_ELEMENT_HANDLER(3)						 1						XML_SET_ELEMENT_HANDLER(3)

xml_set_element_handler - Set up start and end element handlers

SYNOPSIS
bool xml_set_element_handler (resource $parser, callable $start_element_handler, callable $end_element_handler) DESCRIPTION
Sets the element handler functions for the XML $parser. $start_element_handler and $end_element_handler are strings containing the names of functions that must exist when xml_parse(3) is called for $parser. PARAMETERS
o $parser - A reference to the XML parser to set up start and end element handler functions. o $start_element_handler - The function named by $start_element_handler must accept three parameters: start_element_handler (resource $parser, string $name, array $attribs) o $parser - The first parameter, parser, is a reference to the XML parser calling the handler. o $name - The second parameter, $name, contains the name of the element for which this handler is called.If case-folding is in effect for this parser, the element name will be in uppercase letters. o $attribs - The third parameter, $attribs, contains an associative array with the element's attributes (if any).The keys of this array are the attribute names, the values are the attribute values.Attribute names are case-folded on the same criteria as element names.Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through $attribs the normal way, using each(3).The first key in the array was the first attribute, and so on. Note Instead of a function name, an array containing an object reference and a method name can also be supplied. o $end_element_handler - The function named by $end_element_handler must accept two parameters: end_element_handler (resource $parser, string $name) o $parser - The first parameter, parser, is a reference to the XML parser calling the handler. o $name - The second parameter, $name, contains the name of the element for which this handler is called.If case-folding is in effect for this parser, the element name will be in uppercase letters. If a handler function is set to an empty string, or FALSE, the handler in question is disabled. RETURN VALUES
Returns TRUE on success or FALSE on failure. PHP Documentation Group XML_SET_ELEMENT_HANDLER(3)
All times are GMT -4. The time now is 04:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy