AbstractNode::prependChild

The prependChild() method adds a new child node as the first child of the target node.

If the given child already exists as a child of another node, it will be detached from its parent node.

If the given child is a reference to an existing node in the DOM, it will be moved from its current position to the new position.

Description

public AbstractNode::prependChild(NodeInterface $node): ?NodeInterface

Parameters

node

The node to be prepended as the first child.

Return Value

Returns the prepended node, or null if the node couldn't be prepended.

Exceptions

HIERARCHY_REQUEST_ERR

This DOMException is thrown if one of the following constraint is violated:

  • The target node is not an instance of ElementInterface or DocumentInterface
  • The target node is same as the child node
Source Code
If you find this project useful, consider leaving a on GitHub! Thank you!