Automattic\WooCommerce\Utilities

StringUtil::is_null_or_whitespace()public staticWC 1.0

Check if a string is null, is empty, or has only whitespace characters (space, tab, vertical tab, form feed, carriage return, new line)

Метод класса: StringUtil{}

Хуков нет.

Возвращает

true|false. True if the string is null, is empty, or contains only whitespace characters.

Использование

$result = StringUtil::is_null_or_whitespace( ?string $value );
?string $value (обязательный)
-

Код StringUtil::is_null_or_whitespace() WC 9.3.3

public static function is_null_or_whitespace( ?string $value ) {
	return is_null( $value ) || '' === $value || ctype_space( $value );
}