gnusocial.rocks/soc/2020/daily_report/archive/app/src/Support/Str.php

22 lines
444 B
PHP

<?php
namespace App\Support;
use Tightenco\Collect\Support\Collection;
class Str
{
/**
* Explode a string by a string into a collection.
*
* @param string $string
* @param string $delimiter
*
* @return \Tightenco\Collect\Support\Collection
*/
public static function explode(string $string, string $delimiter): Collection
{
return Collection::make(explode($delimiter, $string));
}
}