| PHP |
|---|
| public static function HasElements(?array $array): bool |
| PHP |
|---|
// Checks for array elements.
private static function HasElements()
{
$array = [];
$value = LJC::HasElements($array);
$result = $value ? "true" : "false";
// result:
// false
}
|