Conditions | 4 |
Paths | 3 |
Total Lines | 18 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5407 | 2 | public static function single_chr_html_encode( |
|
5408 | string $char, |
||
5409 | bool $keep_ascii_chars = false, |
||
5410 | string $encoding = 'UTF-8' |
||
5411 | ): string { |
||
5412 | 2 | if ($char === '') { |
|
5413 | 2 | return ''; |
|
5414 | } |
||
5415 | |||
5416 | if ( |
||
5417 | 2 | $keep_ascii_chars |
|
5418 | && |
||
5419 | 2 | ASCII::is_ascii($char) |
|
5420 | ) { |
||
5421 | 2 | return $char; |
|
5422 | } |
||
5423 | |||
5424 | 2 | return '&#' . self::ord($char, $encoding) . ';'; |
|
5425 | } |
||
13665 |