La función DOMText::isWhitespaceInElementContent() es una función incorporada en PHP que se usa para indicar si este Node de texto contiene espacios en blanco o no. En palabras simples, esta función se usa para verificar si un objeto DOMText contiene texto o no.
Sintaxis:
bool DOMText::isWhitespaceInElementContent( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Los siguientes ejemplos ilustran la función DOMText::isWhitespaceInElementContent() en PHP:
Ejemplo 1:
<?php // Create the DOMText without text $text = new DOMText(); // Check if whitespace is there if($text->isWhitespaceInElementContent()) { echo 'Yes ! object is empty.'; } else { echo 'NO it is not empty'; } ?>
Producción:
Yes ! object is empty.
Ejemplo 2:
<?php // Create a DOMText with text $text = new DOMText('Geeksforgeeks'); // Check if whitespace is there if(!$text->isWhitespaceInElementContent()) { echo 'No ! object isn\'t empty.'; } else { echo 'Object is empty'; } ?>
Producción:
No ! object isn't empty.
Referencia: https://www.php.net/manual/en/domtext.iswhitespaceinelementcontent.php