| PHP |
|---|
| public static function HasValue($text): bool |
| PHP |
|---|
// Checks for text.
private static function HasValue()
{
$text = "Text";
$value = LJC::HasValue($text);
$result = $value ? "true" : "false";
// result:
// true
}
|