Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 1 |
CRAP | n/a |
0 / 0 |
|
| strip_punctuation | |
0.00% |
0 / 7 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | if (!function_exists('strip_punctuation')) { |
| 4 | function strip_punctuation($string) |
| 5 | { |
| 6 | return trim(preg_replace([ |
| 7 | '/[^[^\p{L}\d]+/u', |
| 8 | '/[\s]+/', |
| 9 | ], [ |
| 10 | ' ', |
| 11 | ' ', |
| 12 | ], $string)); |
| 13 | } |
| 14 | } |