Is an element local?
mixed $ele An element that implement \DOMNode.:
bool true if local and false otherwise.
public function isLocalElement($ele) { $uri = $ele->namespaceURI; if (empty($uri)) { return false; } return isset(static::$local_ns[$uri]); }