| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function protectMailAddress(string $string): string |
||
| 25 | { |
||
| 26 | $string = preg_replace_callback( |
||
| 27 | '/(.)@(.)/s', |
||
| 28 | static function ($m) { |
||
| 29 | return '&#' . sprintf('%03d', ord($m[1])) . ';@&#' . sprintf('%03d', ord($m[2])) . ';'; |
||
| 30 | }, |
||
| 31 | $string |
||
| 32 | ); |
||
| 33 | |||
| 34 | return $string; |
||
| 35 | } |
||
| 37 |