Uname: Linux premium264.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.3.22 [ PHP INFO ] PHP os: Linux
Server Ip: 69.57.162.13
Your Ip: 216.73.216.219
User: workvvfb (1129) | Group: workvvfb (1084)
Safe Mode: OFF
Disable Function:
NONE

name : Text.php
<?php

namespace WPDaddy\Dom;

use DOMText;

/**
 * Represents the textual content of Element or Attr.  If an element has no
 * markup within its content, it has a single child implementing Text that
 * contains the element's text.  However, if the element contains markup, it is
 * parsed into information items and Text nodes that form its children.
 *
 * New documents have a single Text node for each block of text. Over time,
 * more Text nodes may be created as the document's content changes.
 *
 * The Node.normalize() method merges adjacent Text objects back into a single
 * node for each block of text.
 */
class Text extends DOMText {
	/**
	 * @see http://php.net/manual/en/domtext.iswhitespaceinelementcontent.php
	 * @see https://developer.mozilla.org/en-US/docs/Web/API/Text/isElementContentWhitespace
	 */
	public function isElementContentWhitespace(){
		return $this->isWhitespaceInElementContent();
	}
}
© 2025 GrazzMean