Conditions | 3 |
Paths | 4 |
Total Lines | 20 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5043 | 18 | public static function regex_replace( |
|
5044 | string $str, |
||
5045 | string $pattern, |
||
5046 | string $replacement, |
||
5047 | string $options = '', |
||
5048 | string $delimiter = '/' |
||
5049 | ): string { |
||
5050 | 18 | if ($options === 'msr') { |
|
5051 | 9 | $options = 'ms'; |
|
5052 | } |
||
5053 | |||
5054 | // fallback |
||
5055 | 18 | if (!$delimiter) { |
|
5056 | $delimiter = '/'; |
||
5057 | } |
||
5058 | |||
5059 | 18 | return (string) \preg_replace( |
|
5060 | 18 | $delimiter . $pattern . $delimiter . 'u' . $options, |
|
5061 | $replacement, |
||
5062 | $str |
||
5063 | ); |
||
13722 |