La función DOMText::isElementContentWhitespace() es una función incorporada en PHP que se usa para verificar si este Node de texto contiene espacios en blanco en el contenido del elemento o no.
Sintaxis:
bool DOMText::isElementContentWhitespace( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.
Los programas dados a continuación ilustran la función DOMText::isElementContentWhitespace() en PHP:
Programa 1:
<?php // Create the text Node with no whitespace $text = new DOMText('No_Space'); // Check if whitespace is not there if(!$text->isElementContentWhitespace()) { echo 'No ! Whitespace is not there.'; } ?>
Producción:
No ! Whitespace is not there.
Programa 2:
<?php // Create the text Node with a space $text = new DOMText('Yes Space'); // Check if whitespace is there if($text->isElementContentWhitespace()) { echo 'Yes ! Whitespace is there.'; } ?>
Producción:
Yes ! Whitespace is there.
Referencia: https://www.php.net/manual/en/domtext.iselementcontentwhitespace.php