19 declare(strict_types=1);
45 $this->expectException(TypeError::class);
51 $this->expectException(ValueError::class);
57 $alpha = implode(
'', range(ord(
'A'), ord(
'z')));
58 $numbers = implode(
'', range(ord(
'0'), ord(
'9')));
60 return array_map(fn($s) => [htmlspecialchars($s, ENT_QUOTES | ENT_SUBSTITUTE,
'utf-8'), $s], [
62 'Single quotes' =>
'\'',
63 'Different quotes' =>
'"Hey, y' .
"'" .
'all"',
64 'Characters beyond ASCII value 255' =>
'Ā',
65 'Characters beyond Unicode BMP' =>
"\xF0\x90\x80\x80",
67 'Immune chars' =>
',.-_',
69 'Numbers' => $numbers,
70 'Basic control characters and null' =>
"\r\n\t\0",
71 'Named entities' =>
'<>&"',
72 'Single space' =>
' ',
73 'Encode entities' =>
'"hello"',
81 '\'' => [
'\'',
'''],
82 '"' => [
'"',
'"'],
85 '&' => [
'&',
'&'],