| PHP |
|---|
| public static function Split(string $text): array |
| PHP |
|---|
// Splits a string on whitespace.
private static function Split()
{
$text = "Now is the time.";
$values = LJC::Split($text);
$result = join(", ", $values);
// result:
// Now, is, the, time.
}
|