How to Install and Uninstall php-pear-XML-Parser.noarch Package on Fedora 34

Last updated: January 12,2025

1. Install "php-pear-XML-Parser.noarch" package

In this section, we are going to explain the necessary steps to install php-pear-XML-Parser.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install php-pear-XML-Parser.noarch

2. Uninstall "php-pear-XML-Parser.noarch" package

Please follow the steps below to uninstall php-pear-XML-Parser.noarch on Fedora 34:

$ sudo dnf remove php-pear-XML-Parser.noarch $ sudo dnf autoremove

3. Information about the php-pear-XML-Parser.noarch package on Fedora 34

Last metadata expiration check: 2:43:31 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : php-pear-XML-Parser
Version : 1.3.8
Release : 5.fc34
Architecture : noarch
Size : 25 k
Source : php-pear-XML-Parser-1.3.8-5.fc34.src.rpm
Repository : fedora
Summary : XML parsing class based on PHP's bundled expat
URL : http://pear.php.net/package/XML_Parser
License : BSD
Description : This is an XML parser based on PHPs 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.
:
: Since version 1.2.0 there's a new XML_Parser_Simple class that makes
: parsing of most XML documents easier, by automatically providing a stack
: for the elements. Furthermore its now possible to split the parser from
: the handler object, so you do not have to extend XML_Parser anymore in
: order to parse a document with it.