⚠️ This project is Archived There will be no new features or general bugfixes. In case you found a security problem, please contact me and I'll consider creating an additional release addressing it. Otherwise no updates are planned. The current (potentially final) release1.6.7
should work under PHP 5.3.3 - PHP 8.1.
The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.
PHP: 5.3.3 (5.3.0-5.3.2 had serious issues with spl stacked autoloaders)
Extensions: dom, libxml
Aus of 1.6.7, tests will require PHPUnit 8.5 and PHP 7.3+
Apart from cloning this repository, fDOMDocument can be installed using by any of the following methods.
As fDOMDocument is a library and does not provide any cli tools, you can only add it to your own project:
{
"require": {
"theseer/fdomdocument": "^1.6"
}
}
The following command will install fDOMDocument via its RPM package:
sudo yum install php-theseer-fDOMDocument
fDOMDocument is designed as a drop in replacement for DOMDocument. You can either use the composer generated autoloader or the provided one.
<?php
require '/path/to/autoload.php';
$dom = new TheSeer\fDOM\fDOMDocument();
try {
$dom->loadXML('<?xml version="1.0" ?><root><child name="foo" /></root>');
} catch (fDOMException $e) {
die($e);
}
$child = $dom->queryOne('//child');
print_r($child->getAttribute('name'));
print_r($child->getAttribute('missing','DefaultValue'));
?>
- Add
#[\ReturnTypeWillChange]
attribute to shut up PHP 8.1 notices on return types - Fix deprecation notice for passing
NULL
whereint
is expected
- Merge PRs 33+34: Add support for parameter "asTextNode" to fDOMElement::appendElement(). fDOMElement::appendElementNS() and fDOMElement::appendElementPrefix
- Revert git exports limitations as they cause unwanted side effects
- Merge PR 31 to optimize travis builds and git exports (Thanks to @willemstuursma)
- Merge PR 29 to fix issues with PHP 7.2
- Handle empty string warings from PHP
- Added Workaround for HHVM Issue #5412
- Added
createElement*
tofDOMEmenet
andfDOMDocumentFragment
as shortcuts - Added
appendElement*
tofDOMDocumentFragment
as shortcuts - Enhanced the exception messages of save errors with filenames to contain the filename
- Fixed fDomDocumentFragment::__toString to actually work
- Updated / Added some tests
-
Added
select
tofDOMDocument
,fDOMElement
andfDOMNode
to support CSS Selectors in favor of XPath only to find nodes -
Added
query
andqueryOne
forwardes tofDOMNode
- Added
saveXML
andsaveHTML
tofDOMNode
andfDOMElement
as a shortcut to calling those methods on the ownerDocument
- Added
__toString
support tofDOMNode
,fDOMElement
,fDOMDocument
andfDOMDocumentFragment
- Removed unused Interface
fDOMNodeInterface
from code base
- Added XPathQuery helper object, allowing for a prepared statement alike API around XPath
- Added
__clone
method to reset domxpath object when domdocument gets cloned (Thanks to Markus Ineichen for pointing it out)
- PHP 5.3 compatibility: changed interal behavior for incompatible changes from PHP 5.3 to 5.4 (Thanks to Jens Graefe for pointing it out)
- Added appendTextNode method (Thanks to Markus Ineichen)
- Added appendElement / appendElementNS to DOMDocument to support documentElement "creation" (Thanks to Markus Ineichen)
- Overwrite createElement / createElementNS to throw exception on error
- Removed fDOMFilter code: Unmaintained and broken in its current form
- Added (static) Flag for fDOMException to globally enable full exception message
- Added Unit tests
- PHP 5.4 compatibilty: added support for optional options bitmask on additional methods
- Cleanup code style to adhere coding standard
- Added entity support for Attributes
- Added phpcs file to make coding standard public
- Fix Exception to not overwrite final methods of \Exception
- Changed fDOMDocument to be no longer final, use lsb to lookup actual class in constructor. This should fix test/mock issues.
- Changed fException to be more compatible with standard exceptions by adding a switch to get full info by getMessage()
- Merged setAttributes() and setAttributesNS() methods from Andreas
- Fixed internal registerNamespace variable mixup
- Renamed files to mimic classname cases
- Fixed inSameDocument to support DOMDocument as well as DOMNodes
- Added fDOMXPath class providing queryOne(), qoute() and prepare()
- Adjusted forwarders in fDOMDocument to make use of new object
- Fixed various return values to statically return true for compatibility with original API
- Applied Workaround to fix potential problems with lost references to instances of fDOMDocument
- Support registerPHPFunctions
- Bump Copyright
- Added missing docblocks
- Indenting and typo fixes, minor bugfixes
- Bugfix: typehints corrected
- Initial release