PHP 8.5.0 Alpha 4 available for testing

Voting

: nine minus six?
(Example: nine)

The Note You're Voting On

mailme at sove dot nl
17 years ago
DOMDocument->importNode with seconds argument false will leave attributes behind. To fix this:

$__DOM->importNode
(
$__INPUT->cloneNode(false), true
);

$__DOM (DOMDocument) will import the $__INPUT node (DOMElement) INCLUDING attributes.

<< Back to user notes page

To Top