mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
f0b2ff48eb
This is an XML parser based on PHP's built-in xml extension. It supports two basic modes of operation: "func" and "event". In "func" mode, it will look for a function named after each element (xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags), and in "event" mode it uses a set of generic callbacks. PR: ports/56446 Submitted by: Alex Miller <asm@asm.kiev.ua>
8 lines
378 B
Plaintext
8 lines
378 B
Plaintext
This is an XML parser based on PHP's built-in xml extension. It
|
|
supports two basic modes of operation: "func" and "event". In "func"
|
|
mode, it will look for a function named after each element
|
|
(xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags), and
|
|
in "event" mode it uses a set of generic callbacks.
|
|
|
|
WWW: http://pear.php.net/package-info.php?package=XML_Parser
|