CakeFest 2024: The Official CakePHP Conference

DOMText::isElementContentWhitespace

(No version information available, might only be in Git)

DOMText::isElementContentWhitespaceこのテキストノードが、要素の内容にホワイトスペースが含まれているかを返す

説明

public DOMText::isElementContentWhitespace(): bool

パラメータ

この関数にはパラメータはありません。

戻り値

成功した場合に true を、失敗した場合に false を返します。

add a note

User Contributed Notes 1 note

up
0
riking
5 years ago
This is the recommended (W3C) function name for the equivalent:
http://php.net/manual/en/domtext.iswhitespaceinelementcontent.php

See there for additional notes.
To Top