|
1
|
<?php |
|
2
|
|
|
3
|
namespace OTGS\Installer\FP; |
|
4
|
|
|
5
|
use OTGS\Installer\Collect\Support\Macroable; |
|
6
|
|
|
7
|
class Str { |
|
8
|
use Macroable; |
|
9
|
|
|
10
|
public static function init() { |
|
11
|
self::macro( 'len', curryN( 1, function_exists( 'mb_strlen' ) ? 'mb_strlen' : 'strlen' ) ); |
|
12
|
} |
|
13
|
} |
|
14
|
|
|
15
|
Str::init();
|