get_html_translation_table
Description
The get_html_translation_table of String for PHP returns the translation table used by htmlspecialchars().
Syntax
get_html_translation_table( int $table = HTML_SPECIALCHARS, int $flags = ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, string $encoding = "UTF-8" ): array
Parameters
table
Which table to return.
Constant | Description |
---|---|
HTML_ENTITIES | Entities |
HTML_SPECIALCHARS | Special Characters |
flags
A bitmask of one or more of the following flags, which specify which quotes the table will contain as well as which document type the table is for.
Constant | Description |
---|---|
ENT_COMPAT | Table will contain entities for double-quotes, but not for single-quotes. |
ENT_QUOTES | Table will contain entities for both double and single quotes. |
ENT_NOQUOTES | Table will neither contain entities for single quotes nor for double quotes. |
ENT_HTML401 | Table for HTML 4.01. |
ENT_XML1 | Table for XML 1. |
ENT_XHTML | Table for XHTML. |
ENT_HTML5 | Table for HTML 5. |
encoding
Encoding to use.
Charset | Aliases | Description |
---|---|---|
ISO-8859-1 | ISO8859-1 | Western European, Latin-1. |
ISO-8859-5 | ISO8859-5 | Little used cyrillic charset (Latin/Cyrillic). |
ISO-8859-15 | ISO8859-15 | Western European, Latin-9. Adds the Euro sign, French and Finnish letters missing in Latin-1 (ISO-8859-1). |
UTF-8 | ASCII compatible multi-byte 8-bit Unicode. | |
cp866 | ibm866, 866 | DOS-specific Cyrillic charset. |
cp1251 | Windows-1251, win-1251, 1251 | Windows-specific Cyrillic charset. |
cp1252 | Windows-1252, 1252 | Windows specific charset for Western European. |
KOI8-R | koi8-ru, koi8r | Russian |
BIG5 | 950 | Traditional Chinese, mainly used in Taiwan. |
GB2312 | 936 | Simplified Chinese, national standard character set. |
BIG5-HKSCS | Big5 with Hong Kong extensions, Traditional Chinese. | |
Shift_JIS | SJIS, SJIS-win, cp932, 932 | Japanese |
EUC-JP | EUCJP, eucJP-win | Japanese |
MacRoman | Charset that was used by Mac OS. | |
'' | An empty string activates detection from script encoding (Zend multibyte), default_charset and current locale (see nl_langinfo() and setlocale()), in this order. Not recommended. |
NOTE: Any other character sets are not recognized. The default encoding will be used instead and a warning will be emitted.
Return
Returns the translation table as an array, with the original characters as keys and entities as values.
Examples
1 · void
<? $return = get_html_translation_table(); print_r($return);
Array ( ["] => " [&] => & ['] => ' [<] => < [>] => > )
2 · table
<? $table = HTML_ENTITIES; $return = get_html_translation_table($table); print_r($return);
Array ( ["] => " [&] => & ['] => ' [<] => < [>] => > [ ] => [¡] => ¡ [¢] => ¢ [£] => £ [¤] => ¤ [¥] => ¥ [¦] => ¦ [§] => § [¨] => ¨ [©] => © [ª] => ª [«] => « [¬] => ¬ [] => ­ [®] => ® [¯] => ¯ [°] => ° [±] => ± [²] => ² [³] => ³ [´] => ´ [µ] => µ [¶] => ¶ [·] => · [¸] => ¸ [¹] => ¹ [º] => º [»] => » [¼] => ¼ [½] => ½ [¾] => ¾ [¿] => ¿ [À] => À [Á] => Á [Â] =>  [Ã] => à [Ä] => Ä [Å] => Å [Æ] => Æ [Ç] => Ç [È] => È [É] => É [Ê] => Ê [Ë] => Ë [Ì] => Ì [Í] => Í [Î] => Î [Ï] => Ï [Ð] => Ð [Ñ] => Ñ [Ò] => Ò [Ó] => Ó [Ô] => Ô [Õ] => Õ [Ö] => Ö [×] => × [Ø] => Ø [Ù] => Ù [Ú] => Ú [Û] => Û [Ü] => Ü [Ý] => Ý [Þ] => Þ [ß] => ß [à] => à [á] => á [â] => â [ã] => ã [ä] => ä [å] => å [æ] => æ [ç] => ç [è] => è [é] => é [ê] => ê [ë] => ë [ì] => ì [í] => í [î] => î [ï] => ï [ð] => ð [ñ] => ñ [ò] => ò [ó] => ó [ô] => ô [õ] => õ [ö] => ö [÷] => ÷ [ø] => ø [ù] => ù [ú] => ú [û] => û [ü] => ü [ý] => ý [þ] => þ [ÿ] => ÿ [Œ] => Œ [œ] => œ [Š] => Š [š] => š [Ÿ] => Ÿ [ƒ] => ƒ [ˆ] => ˆ [˜] => ˜ [Α] => Α [Β] => Β [Γ] => Γ [Δ] => Δ [Ε] => Ε [Ζ] => Ζ [Η] => Η [Θ] => Θ [Ι] => Ι [Κ] => Κ [Λ] => Λ [Μ] => Μ [Ν] => Ν [Ξ] => Ξ [Ο] => Ο [Π] => Π [Ρ] => Ρ [Σ] => Σ [Τ] => Τ [Υ] => Υ [Φ] => Φ [Χ] => Χ [Ψ] => Ψ [Ω] => Ω [α] => α [β] => β [γ] => γ [δ] => δ [ε] => ε [ζ] => ζ [η] => η [θ] => θ [ι] => ι [κ] => κ [λ] => λ [μ] => μ [ν] => ν [ξ] => ξ [ο] => ο [π] => π [ρ] => ρ [ς] => ς [σ] => σ [τ] => τ [υ] => υ [φ] => φ [χ] => χ [ψ] => ψ [ω] => ω [ϑ] => ϑ [ϒ] => ϒ [ϖ] => ϖ [ ] =>   [ ] =>   [ ] =>   [] => ‌ [] => ‍ [] => ‎ [] => ‏ [–] => – [—] => — [‘] => ‘ [’] => ’ [‚] => ‚ [“] => “ [”] => ” [„] => „ [†] => † [‡] => ‡ [•] => • […] => … [‰] => ‰ [′] => ′ [″] => ″ [‹] => ‹ [›] => › [‾] => ‾ [⁄] => ⁄ [€] => € [ℑ] => ℑ [℘] => ℘ [ℜ] => ℜ [™] => ™ [ℵ] => ℵ [←] => ← [↑] => ↑ [→] => → [↓] => ↓ [↔] => ↔ [↵] => ↵ [⇐] => ⇐ [⇑] => ⇑ [⇒] => ⇒ [⇓] => ⇓ [⇔] => ⇔ [∀] => ∀ [∂] => ∂ [∃] => ∃ [∅] => ∅ [∇] => ∇ [∈] => ∈ [∉] => ∉ [∋] => ∋ [∏] => ∏ [∑] => ∑ [−] => − [∗] => ∗ [√] => √ [∝] => ∝ [∞] => ∞ [∠] => ∠ [∧] => ∧ [∨] => ∨ [∩] => ∩ [∪] => ∪ [∫] => ∫ [∴] => ∴ [∼] => ∼ [≅] => ≅ [≈] => ≈ [≠] => ≠ [≡] => ≡ [≤] => ≤ [≥] => ≥ [⊂] => ⊂ [⊃] => ⊃ [⊄] => ⊄ [⊆] => ⊆ [⊇] => ⊇ [⊕] => ⊕ [⊗] => ⊗ [⊥] => ⊥ [⋅] => ⋅ [⌈] => ⌈ [⌉] => ⌉ [⌊] => ⌊ [⌋] => ⌋ [〈] => ⟨ [〉] => ⟩ [◊] => ◊ [♠] => ♠ [♣] => ♣ [♥] => ♥ [♦] => ♦ )
3 · flags
<? $table = HTML_ENTITIES; $flags = ENT_QUOTES | ENT_HTML5; $return = get_html_translation_table($table, $flags); print_r($return);
Array ( [ ] => 	 [ ] => 
 [!] => ! ["] => " [#] => # [$] => $ [%] => % [&] => & ['] => ' [(] => ( [)] => ) [*] => * [+] => + [,] => , [.] => . [/] => / [:] => : [;] => ; [<] => < [<⃒] => <⃒ [=] => = [=⃥] => =⃥ [>] => > [>⃒] => >⃒ [?] => ? [@] => @ [[] => [ [\] => \ []] => ] [^] => ^ [_] => _ [`] => ` [fj] => fj [{] => { [|] => | [}] => } [ ] => [¡] => ¡ [¢] => ¢ [£] => £ [¤] => ¤ [¥] => ¥ [¦] => ¦ [§] => § [¨] => ¨ [©] => © [ª] => ª [«] => « [¬] => ¬ [] => ­ [®] => ® [¯] => ¯ [°] => ° [±] => ± [²] => ² [³] => ³ [´] => ´ [µ] => µ [¶] => ¶ [·] => · [¸] => ¸ [¹] => ¹ [º] => º [»] => » [¼] => ¼ [½] => ½ [¾] => ¾ [¿] => ¿ [À] => À [Á] => Á [Â] =>  [Ã] => à [Ä] => Ä [Å] => Å [Æ] => Æ [Ç] => Ç [È] => È [É] => É [Ê] => Ê [Ë] => Ë [Ì] => Ì [Í] => Í [Î] => Î [Ï] => Ï [Ð] => Ð [Ñ] => Ñ [Ò] => Ò [Ó] => Ó [Ô] => Ô [Õ] => Õ [Ö] => Ö [×] => × [Ø] => Ø [Ù] => Ù [Ú] => Ú [Û] => Û [Ü] => Ü [Ý] => Ý [Þ] => Þ [ß] => ß [à] => à [á] => á [â] => â [ã] => ã [ä] => ä [å] => å [æ] => æ [ç] => ç [è] => è [é] => é [ê] => ê [ë] => ë [ì] => ì [í] => í [î] => î [ï] => ï [ð] => ð [ñ] => ñ [ò] => ò [ó] => ó [ô] => ô [õ] => õ [ö] => ö [÷] => ÷ [ø] => ø [ù] => ù [ú] => ú [û] => û [ü] => ü [ý] => ý [þ] => þ [ÿ] => ÿ [Ā] => Ā [ā] => ā [Ă] => Ă [ă] => ă [Ą] => Ą [ą] => ą [Ć] => Ć [ć] => ć [Ĉ] => Ĉ [ĉ] => ĉ [Ċ] => Ċ [ċ] => ċ [Č] => Č [č] => č [Ď] => Ď [ď] => ď [Đ] => Đ [đ] => đ [Ē] => Ē [ē] => ē [Ė] => Ė [ė] => ė [Ę] => Ę [ę] => ę [Ě] => Ě [ě] => ě [Ĝ] => Ĝ [ĝ] => ĝ [Ğ] => Ğ [ğ] => ğ [Ġ] => Ġ [ġ] => ġ [Ģ] => Ģ [Ĥ] => Ĥ [ĥ] => ĥ [Ħ] => Ħ [ħ] => ħ [Ĩ] => Ĩ [ĩ] => ĩ [Ī] => Ī [ī] => ī [Į] => Į [į] => į [İ] => İ [ı] => ı [IJ] => IJ [ij] => ij [Ĵ] => Ĵ [ĵ] => ĵ [Ķ] => Ķ [ķ] => ķ [ĸ] => ĸ [Ĺ] => Ĺ [ĺ] => ĺ [Ļ] => Ļ [ļ] => ļ [Ľ] => Ľ [ľ] => ľ [Ŀ] => Ŀ [ŀ] => ŀ [Ł] => Ł [ł] => ł [Ń] => Ń [ń] => ń [Ņ] => Ņ [ņ] => ņ [Ň] => Ň [ň] => ň [ʼn] => ʼn [Ŋ] => Ŋ [ŋ] => ŋ [Ō] => Ō [ō] => ō [Ő] => Ő [ő] => ő [Œ] => Œ [œ] => œ [Ŕ] => Ŕ [ŕ] => ŕ [Ŗ] => Ŗ [ŗ] => ŗ [Ř] => Ř [ř] => ř [Ś] => Ś [ś] => ś [Ŝ] => Ŝ [ŝ] => ŝ [Ş] => Ş [ş] => ş [Š] => Š [š] => š [Ţ] => Ţ [ţ] => ţ [Ť] => Ť [ť] => ť [Ŧ] => Ŧ [ŧ] => ŧ [Ũ] => Ũ [ũ] => ũ [Ū] => Ū [ū] => ū [Ŭ] => Ŭ [ŭ] => ŭ [Ů] => Ů [ů] => ů [Ű] => Ű [ű] => ű [Ų] => Ų [ų] => ų [Ŵ] => Ŵ [ŵ] => ŵ [Ŷ] => Ŷ [ŷ] => ŷ [Ÿ] => Ÿ [Ź] => Ź [ź] => ź [Ż] => Ż [ż] => ż [Ž] => Ž [ž] => ž [ƒ] => ƒ [Ƶ] => Ƶ [ǵ] => ǵ [ȷ] => ȷ [ˆ] => ˆ [ˇ] => ˇ [˘] => ˘ [˙] => ˙ [˚] => ˚ [˛] => ˛ [˜] => ˜ [˝] => ˝ [̑] => ̑ [Α] => Α [Β] => Β [Γ] => Γ [Δ] => Δ [Ε] => Ε [Ζ] => Ζ [Η] => Η [Θ] => Θ [Ι] => Ι [Κ] => Κ [Λ] => Λ [Μ] => Μ [Ν] => Ν [Ξ] => Ξ [Ο] => Ο [Π] => Π [Ρ] => Ρ [Σ] => Σ [Τ] => Τ [Υ] => Υ [Φ] => Φ [Χ] => Χ [Ψ] => Ψ [Ω] => Ω [α] => α [β] => β [γ] => γ [δ] => δ [ε] => ε [ζ] => ζ [η] => η [θ] => θ [ι] => ι [κ] => κ [λ] => λ [μ] => μ [ν] => ν [ξ] => ξ [ο] => ο [π] => π [ρ] => ρ [ς] => ς [σ] => σ [τ] => τ [υ] => υ [φ] => φ [χ] => χ [ψ] => ψ [ω] => ω [ϑ] => ϑ [ϒ] => ϒ [ϕ] => ϕ [ϖ] => ϖ [Ϝ] => Ϝ [ϝ] => ϝ [ϰ] => ϰ [ϱ] => ϱ [ϵ] => ϵ [϶] => ϶ [Ё] => Ё [Ђ] => Ђ [Ѓ] => Ѓ [Є] => Є [Ѕ] => Ѕ [І] => І [Ї] => Ї [Ј] => Ј [Љ] => Љ [Њ] => Њ [Ћ] => Ћ [Ќ] => Ќ [Ў] => Ў [Џ] => Џ [А] => А [Б] => Б [В] => В [Г] => Г [Д] => Д [Е] => Е [Ж] => Ж [З] => З [И] => И [Й] => Й [К] => К [Л] => Л [М] => М [Н] => Н [О] => О [П] => П [Р] => Р [С] => С [Т] => Т [У] => У [Ф] => Ф [Х] => Х [Ц] => Ц [Ч] => Ч [Ш] => Ш [Щ] => Щ [Ъ] => Ъ [Ы] => Ы [Ь] => Ь [Э] => Э [Ю] => Ю [Я] => Я [а] => а [б] => б [в] => в [г] => г [д] => д [е] => е [ж] => ж [з] => з [и] => и [й] => й [к] => к [л] => л [м] => м [н] => н [о] => о [п] => п [р] => р [с] => с [т] => т [у] => у [ф] => ф [х] => х [ц] => ц [ч] => ч [ш] => ш [щ] => щ [ъ] => ъ [ы] => ы [ь] => ь [э] => э [ю] => ю [я] => я [ё] => ё [ђ] => ђ [ѓ] => ѓ [є] => є [ѕ] => ѕ [і] => і [ї] => ї [ј] => ј [љ] => љ [њ] => њ [ћ] => ћ [ќ] => ќ [ў] => ў [џ] => џ [ ] =>   [ ] =>   [ ] =>   [ ] =>   [ ] =>   [ ] =>   [ ] =>   [ ] =>   [] => ​ [] => ‌ [] => ‍ [] => ‎ [] => ‏ [‐] => ‐ [–] => – [—] => — [―] => ― [‖] => ‖ [‘] => ‘ [’] => ’ [‚] => ‚ [“] => “ [”] => ” [„] => „ [†] => † [‡] => ‡ [•] => • [‥] => ‥ […] => … [‰] => ‰ [‱] => ‱ [′] => ′ [″] => ″ [‴] => ‴ [‵] => ‵ [‹] => ‹ [›] => › [‾] => ‾ [⁁] => ⁁ [⁃] => ⁃ [⁄] => ⁄ [⁏] => ⁏ [⁗] => ⁗ [ ] =>   [ ] =>    [] => ⁠ [] => ⁡ [] => ⁢ [] => ⁣ [€] => € [⃛] => ⃛ [⃜] => ⃜ [ℂ] => ℂ [℅] => ℅ [ℊ] => ℊ [ℋ] => ℋ [ℌ] => ℌ [ℍ] => ℍ [ℎ] => ℎ [ℏ] => ℏ [ℐ] => ℐ [ℑ] => ℑ [ℒ] => ℒ [ℓ] => ℓ [ℕ] => ℕ [№] => № [℗] => ℗ [℘] => ℘ [ℙ] => ℙ [ℚ] => ℚ [ℛ] => ℛ [ℜ] => ℜ [ℝ] => ℝ [℞] => ℞ [™] => ™ [ℤ] => ℤ [℧] => ℧ [ℨ] => ℨ [℩] => ℩ [ℬ] => ℬ [ℭ] => ℭ [ℯ] => ℯ [ℰ] => ℰ [ℱ] => ℱ [ℳ] => ℳ [ℴ] => ℴ [ℵ] => ℵ [ℶ] => ℶ [ℷ] => ℷ [ℸ] => ℸ [ⅅ] => ⅅ [ⅆ] => ⅆ [ⅇ] => ⅇ [ⅈ] => ⅈ [⅓] => ⅓ [⅔] => ⅔ [⅕] => ⅕ [⅖] => ⅖ [⅗] => ⅗ [⅘] => ⅘ [⅙] => ⅙ [⅚] => ⅚ [⅛] => ⅛ [⅜] => ⅜ [⅝] => ⅝ [⅞] => ⅞ [←] => ← [↑] => ↑ [→] => → [↓] => ↓ [↔] => ↔ [↕] => ↕ [↖] => ↖ [↗] => ↗ [↘] => ↘ [↙] => ↙ [↚] => ↚ [↛] => ↛ [↝] => ↝ [↝̸] => ↝̸ [↞] => ↞ [↟] => ↟ [↠] => ↠ [↡] => ↡ [↢] => ↢ [↣] => ↣ [↤] => ↤ [↥] => ↥ [↦] => ↦ [↧] => ↧ [↩] => ↩ [↪] => ↪ [↫] => ↫ [↬] => ↬ [↭] => ↭ [↮] => ↮ [↰] => ↰ [↱] => ↱ [↲] => ↲ [↳] => ↳ [↵] => ↵ [↶] => ↶ [↷] => ↷ [↺] => ↺ [↻] => ↻ [↼] => ↼ [↽] => ↽ [↾] => ↾ [↿] => ↿ [⇀] => ⇀ [⇁] => ⇁ [⇂] => ⇂ [⇃] => ⇃ [⇄] => ⇄ [⇅] => ⇅ [⇆] => ⇆ [⇇] => ⇇ [⇈] => ⇈ [⇉] => ⇉ [⇊] => ⇊ [⇋] => ⇋ [⇌] => ⇌ [⇍] => ⇍ [⇎] => ⇎ [⇏] => ⇏ [⇐] => ⇐ [⇑] => ⇑ [⇒] => ⇒ [⇓] => ⇓ [⇔] => ⇔ [⇕] => ⇕ [⇖] => ⇖ [⇗] => ⇗ [⇘] => ⇘ [⇙] => ⇙ [⇚] => ⇚ [⇛] => ⇛ [⇝] => ⇝ [⇤] => ⇤ [⇥] => ⇥ [⇵] => ⇵ [⇽] => ⇽ [⇾] => ⇾ [⇿] => ⇿ [∀] => ∀ [∁] => ∁ [∂] => ∂ [∂̸] => ∂̸ [∃] => ∃ [∄] => ∄ [∅] => ∅ [∇] => ∇ [∈] => ∈ [∉] => ∉ [∋] => ∋ [∌] => ∌ [∏] => ∏ [∐] => ∐ [∑] => ∑ [−] => − [∓] => ∓ [∔] => ∔ [∖] => ∖ [∗] => ∗ [∘] => ∘ [√] => √ [∝] => ∝ [∞] => ∞ [∟] => ∟ [∠] => ∠ [∠⃒] => ∠⃒ [∡] => ∡ [∢] => ∢ [∣] => ∣ [∤] => ∤ [∥] => ∥ [∦] => ∦ [∧] => ∧ [∨] => ∨ [∩] => ∩ [∩︀] => ∩︀ [∪] => ∪ [∪︀] => ∪︀ [∫] => ∫ [∬] => ∬ [∭] => ∭ [∮] => ∮ [∯] => ∯ [∰] => ∰ [∱] => ∱ [∲] => ∲ [∳] => ∳ [∴] => ∴ [∵] => ∵ [∶] => ∶ [∷] => ∷ [∸] => ∸ [∺] => ∺ [∻] => ∻ [∼] => ∼ [∼⃒] => ∼⃒ [∽] => ∽ [∽̱] => ∽̱ [∾] => ∾ [∾̳] => ∾̳ [∿] => ∿ [≀] => ≀ [≁] => ≁ [≂] => ≂ [≂̸] => ≂̸ [≃] => ≃ [≄] => ≄ [≅] => ≅ [≆] => ≆ [≇] => ≇ [≈] => ≈ [≉] => ≉ [≊] => ≊ [≋] => ≋ [≋̸] => ≋̸ [≌] => ≌ [≍] => ≍ [≍⃒] => ≍⃒ [≎] => ≎ [≎̸] => ≎̸ [≏] => ≏ [≏̸] => ≏̸ [≐] => ≐ [≐̸] => ≐̸ [≑] => ≑ [≒] => ≒ [≓] => ≓ [≔] => ≔ [≕] => ≕ [≖] => ≖ [≗] => ≗ [≙] => ≙ [≚] => ≚ [≜] => ≜ [≟] => ≟ [≠] => ≠ [≡] => ≡ [≡⃥] => ≡⃥ [≢] => ≢ [≤] => ≤ [≤⃒] => ≤⃒ [≥] => ≥ [≥⃒] => ≥⃒ [≦] => ≦ [≦̸] => ≦̸ [≧] => ≧ [≧̸] => ≧̸ [≨] => ≨ [≨︀] => ≨︀ [≩] => ≩ [≩︀] => ≩︀ [≪] => ≪ [≪̸] => ≪̸ [≪⃒] => ≪⃒ [≫] => ≫ [≫̸] => ≫̸ [≫⃒] => ≫⃒ [≬] => ≬ [≭] => ≭ [≮] => ≮ [≯] => ≯ [≰] => ≰ [≱] => ≱ [≲] => ≲ [≳] => ≳ [≴] => ≴ [≵] => ≵ [≶] => ≶ [≷] => ≷ [≸] => ≸ [≹] => ≹ [≺] => ≺ [≻] => ≻ [≼] => ≼ [≽] => ≽ [≾] => ≾ [≿] => ≿ [≿̸] => ≿̸ [⊀] => ⊀ [⊁] => ⊁ [⊂] => ⊂ [⊂⃒] => ⊂⃒ [⊃] => ⊃ [⊃⃒] => ⊃⃒ [⊄] => ⊄ [⊅] => ⊅ [⊆] => ⊆ [⊇] => ⊇ [⊈] => ⊈ [⊉] => ⊉ [⊊] => ⊊ [⊊︀] => ⊊︀ [⊋] => ⊋ [⊋︀] => ⊋︀ [⊍] => ⊍ [⊎] => ⊎ [⊏] => ⊏ [⊏̸] => ⊏̸ [⊐] => ⊐ [⊐̸] => ⊐̸ [⊑] => ⊑ [⊒] => ⊒ [⊓] => ⊓ [⊓︀] => ⊓︀ [⊔] => ⊔ [⊔︀] => ⊔︀ [⊕] => ⊕ [⊖] => ⊖ [⊗] => ⊗ [⊘] => ⊘ [⊙] => ⊙ [⊚] => ⊚ [⊛] => ⊛ [⊝] => ⊝ [⊞] => ⊞ [⊟] => ⊟ [⊠] => ⊠ [⊡] => ⊡ [⊢] => ⊢ [⊣] => ⊣ [⊤] => ⊤ [⊥] => ⊥ [⊧] => ⊧ [⊨] => ⊨ [⊩] => ⊩ [⊪] => ⊪ [⊫] => ⊫ [⊬] => ⊬ [⊭] => ⊭ [⊮] => ⊮ [⊯] => ⊯ [⊰] => ⊰ [⊲] => ⊲ [⊳] => ⊳ [⊴] => ⊴ [⊴⃒] => ⊴⃒ [⊵] => ⊵ [⊵⃒] => ⊵⃒ [⊶] => ⊶ [⊷] => ⊷ [⊸] => ⊸ [⊹] => ⊹ [⊺] => ⊺ [⊻] => ⊻ [⊽] => ⊽ [⊾] => ⊾ [⊿] => ⊿ [⋀] => ⋀ [⋁] => ⋁ [⋂] => ⋂ [⋃] => ⋃ [⋄] => ⋄ [⋅] => ⋅ [⋆] => ⋆ [⋇] => ⋇ [⋈] => ⋈ [⋉] => ⋉ [⋊] => ⋊ [⋋] => ⋋ [⋌] => ⋌ [⋍] => ⋍ [⋎] => ⋎ [⋏] => ⋏ [⋐] => ⋐ [⋑] => ⋑ [⋒] => ⋒ [⋓] => ⋓ [⋔] => ⋔ [⋕] => ⋕ [⋖] => ⋖ [⋗] => ⋗ [⋘] => ⋘ [⋘̸] => ⋘̸ [⋙] => ⋙ [⋙̸] => ⋙̸ [⋚] => ⋚ [⋚︀] => ⋚︀ [⋛] => ⋛ [⋛︀] => ⋛︀ [⋞] => ⋞ [⋟] => ⋟ [⋠] => ⋠ [⋡] => ⋡ [⋢] => ⋢ [⋣] => ⋣ [⋦] => ⋦ [⋧] => ⋧ [⋨] => ⋨ [⋩] => ⋩ [⋪] => ⋪ [⋫] => ⋫ [⋬] => ⋬ [⋭] => ⋭ [⋮] => ⋮ [⋯] => ⋯ [⋰] => ⋰ [⋱] => ⋱ [⋲] => ⋲ [⋳] => ⋳ [⋴] => ⋴ [⋵] => ⋵ [⋵̸] => ⋵̸ [⋶] => ⋶ [⋷] => ⋷ [⋹] => ⋹ [⋹̸] => ⋹̸ [⋺] => ⋺ [⋻] => ⋻ [⋼] => ⋼ [⋽] => ⋽ [⋾] => ⋾ [⌅] => ⌅ [⌆] => ⌆ [⌈] => ⌈ [⌉] => ⌉ [⌊] => ⌊ [⌋] => ⌋ [⌌] => ⌌ [⌍] => ⌍ [⌎] => ⌎ [⌏] => ⌏ [⌐] => ⌐ [⌒] => ⌒ [⌓] => ⌓ [⌕] => ⌕ [⌖] => ⌖ [⌜] => ⌜ [⌝] => ⌝ [⌞] => ⌞ [⌟] => ⌟ [⌢] => ⌢ [⌣] => ⌣ [⌭] => ⌭ [⌮] => ⌮ [⌶] => ⌶ [⌽] => ⌽ [⌿] => ⌿ [⍼] => ⍼ [⎰] => ⎰ [⎱] => ⎱ [⎴] => ⎴ [⎵] => ⎵ [⎶] => ⎶ [⏜] => ⏜ [⏝] => ⏝ [⏞] => ⏞ [⏟] => ⏟ [⏢] => ⏢ [⏧] => ⏧ [␣] => ␣ [Ⓢ] => Ⓢ [─] => ─ [│] => │ [┌] => ┌ [┐] => ┐ [└] => └ [┘] => ┘ [├] => ├ [┤] => ┤ [┬] => ┬ [┴] => ┴ [┼] => ┼ [═] => ═ [║] => ║ [╒] => ╒ [╓] => ╓ [╔] => ╔ [╕] => ╕ [╖] => ╖ [╗] => ╗ [╘] => ╘ [╙] => ╙ [╚] => ╚ [╛] => ╛ [╜] => ╜ [╝] => ╝ [╞] => ╞ [╟] => ╟ [╠] => ╠ [╡] => ╡ [╢] => ╢ [╣] => ╣ [╤] => ╤ [╥] => ╥ [╦] => ╦ [╧] => ╧ [╨] => ╨ [╩] => ╩ [╪] => ╪ [╫] => ╫ [╬] => ╬ [▀] => ▀ [▄] => ▄ [█] => █ [░] => ░ [▒] => ▒ [▓] => ▓ [□] => □ [▪] => ▪ [▫] => ▫ [▭] => ▭ [▮] => ▮ [▱] => ▱ [△] => △ [▴] => ▴ [▵] => ▵ [▸] => ▸ [▹] => ▹ [▽] => ▽ [▾] => ▾ [▿] => ▿ [◂] => ◂ [◃] => ◃ [◊] => ◊ [○] => ○ [◬] => ◬ [◯] => ◯ [◸] => ◸ [◹] => ◹ [◺] => ◺ [◻] => ◻ [◼] => ◼ [★] => ★ [☆] => ☆ [☎] => ☎ [♀] => ♀ [♂] => ♂ [♠] => ♠ [♣] => ♣ [♥] => ♥ [♦] => ♦ [♪] => ♪ [♭] => ♭ [♮] => ♮ [♯] => ♯ [✓] => ✓ [✗] => ✗ [✠] => ✠ [✶] => ✶ [❘] => ❘ [❲] => ❲ [❳] => ❳ [⟈] => ⟈ [⟉] => ⟉ [⟦] => ⟦ [⟧] => ⟧ [⟨] => ⟨ [⟩] => ⟩ [⟪] => ⟪ [⟫] => ⟫ [⟬] => ⟬ [⟭] => ⟭ [⟵] => ⟵ [⟶] => ⟶ [⟷] => ⟷ [⟸] => ⟸ [⟹] => ⟹ [⟺] => ⟺ [⟼] => ⟼ [⟿] => ⟿ [⤂] => ⤂ [⤃] => ⤃ [⤄] => ⤄ [⤅] => ⤅ [⤌] => ⤌ [⤍] => ⤍ [⤎] => ⤎ [⤏] => ⤏ [⤐] => ⤐ [⤑] => ⤑ [⤒] => ⤒ [⤓] => ⤓ [⤖] => ⤖ [⤙] => ⤙ [⤚] => ⤚ [⤛] => ⤛ [⤜] => ⤜ [⤝] => ⤝ [⤞] => ⤞ [⤟] => ⤟ [⤠] => ⤠ [⤣] => ⤣ [⤤] => ⤤ [⤥] => ⤥ [⤦] => ⤦ [⤧] => ⤧ [⤨] => ⤨ [⤩] => ⤩ [⤪] => ⤪ [⤳] => ⤳ [⤳̸] => ⤳̸ [⤵] => ⤵ [⤶] => ⤶ [⤷] => ⤷ [⤸] => ⤸ [⤹] => ⤹ [⤼] => ⤼ [⤽] => ⤽ [⥅] => ⥅ [⥈] => ⥈ [⥉] => ⥉ [⥊] => ⥊ [⥋] => ⥋ [⥎] => ⥎ [⥏] => ⥏ [⥐] => ⥐ [⥑] => ⥑ [⥒] => ⥒ [⥓] => ⥓ [⥔] => ⥔ [⥕] => ⥕ [⥖] => ⥖ [⥗] => ⥗ [⥘] => ⥘ [⥙] => ⥙ [⥚] => ⥚ [⥛] => ⥛ [⥜] => ⥜ [⥝] => ⥝ [⥞] => ⥞ [⥟] => ⥟ [⥠] => ⥠ [⥡] => ⥡ [⥢] => ⥢ [⥣] => ⥣ [⥤] => ⥤ [⥥] => ⥥ [⥦] => ⥦ [⥧] => ⥧ [⥨] => ⥨ [⥩] => ⥩ [⥪] => ⥪ [⥫] => ⥫ [⥬] => ⥬ [⥭] => ⥭ [⥮] => ⥮ [⥯] => ⥯ [⥰] => ⥰ [⥱] => ⥱ [⥲] => ⥲ [⥳] => ⥳ [⥴] => ⥴ [⥵] => ⥵ [⥶] => ⥶ [⥸] => ⥸ [⥹] => ⥹ [⥻] => ⥻ [⥼] => ⥼ [⥽] => ⥽ [⥾] => ⥾ [⥿] => ⥿ [⦅] => ⦅ [⦆] => ⦆ [⦋] => ⦋ [⦌] => ⦌ [⦍] => ⦍ [⦎] => ⦎ [⦏] => ⦏ [⦐] => ⦐ [⦑] => ⦑ [⦒] => ⦒ [⦓] => ⦓ [⦔] => ⦔ [⦕] => ⦕ [⦖] => ⦖ [⦚] => ⦚ [⦜] => ⦜ [⦝] => ⦝ [⦤] => ⦤ [⦥] => ⦥ [⦦] => ⦦ [⦧] => ⦧ [⦨] => ⦨ [⦩] => ⦩ [⦪] => ⦪ [⦫] => ⦫ [⦬] => ⦬ [⦭] => ⦭ [⦮] => ⦮ [⦯] => ⦯ [⦰] => ⦰ [⦱] => ⦱ [⦲] => ⦲ [⦳] => ⦳ [⦴] => ⦴ [⦵] => ⦵ [⦶] => ⦶ [⦷] => ⦷ [⦹] => ⦹ [⦻] => ⦻ [⦼] => ⦼ [⦾] => ⦾ [⦿] => ⦿ [⧀] => ⧀ [⧁] => ⧁ [⧂] => ⧂ [⧃] => ⧃ [⧄] => ⧄ [⧅] => ⧅ [⧉] => ⧉ [⧍] => ⧍ [⧎] => ⧎ [⧏] => ⧏ [⧏̸] => ⧏̸ [⧐] => ⧐ [⧐̸] => ⧐̸ [⧜] => ⧜ [⧝] => ⧝ [⧞] => ⧞ [⧣] => ⧣ [⧤] => ⧤ [⧥] => ⧥ [⧫] => ⧫ [⧴] => ⧴ [⧶] => ⧶ [⨀] => ⨀ [⨁] => ⨁ [⨂] => ⨂ [⨄] => ⨄ [⨆] => ⨆ [⨌] => ⨌ [⨍] => ⨍ [⨐] => ⨐ [⨑] => ⨑ [⨒] => ⨒ [⨓] => ⨓ [⨔] => ⨔ [⨕] => ⨕ [⨖] => ⨖ [⨗] => ⨗ [⨢] => ⨢ [⨣] => ⨣ [⨤] => ⨤ [⨥] => ⨥ [⨦] => ⨦ [⨧] => ⨧ [⨩] => ⨩ [⨪] => ⨪ [⨭] => ⨭ [⨮] => ⨮ [⨯] => ⨯ [⨰] => ⨰ [⨱] => ⨱ [⨳] => ⨳ [⨴] => ⨴ [⨵] => ⨵ [⨶] => ⨶ [⨷] => ⨷ [⨸] => ⨸ [⨹] => ⨹ [⨺] => ⨺ [⨻] => ⨻ [⨼] => ⨼ [⨿] => ⨿ [⩀] => ⩀ [⩂] => ⩂ [⩃] => ⩃ [⩄] => ⩄ [⩅] => ⩅ [⩆] => ⩆ [⩇] => ⩇ [⩈] => ⩈ [⩉] => ⩉ [⩊] => ⩊ [⩋] => ⩋ [⩌] => ⩌ [⩍] => ⩍ [⩐] => ⩐ [⩓] => ⩓ [⩔] => ⩔ [⩕] => ⩕ [⩖] => ⩖ [⩗] => ⩗ [⩘] => ⩘ [⩚] => ⩚ [⩛] => ⩛ [⩜] => ⩜ [⩝] => ⩝ [⩟] => ⩟ [⩦] => ⩦ [⩪] => ⩪ [⩭] => ⩭ [⩭̸] => ⩭̸ [⩮] => ⩮ [⩯] => ⩯ [⩰] => ⩰ [⩰̸] => ⩰̸ [⩱] => ⩱ [⩲] => ⩲ [⩳] => ⩳ [⩴] => ⩴ [⩵] => ⩵ [⩷] => ⩷ [⩸] => ⩸ [⩹] => ⩹ [⩺] => ⩺ [⩻] => ⩻ [⩼] => ⩼ [⩽] => ⩽ [⩽̸] => ⩽̸ [⩾] => ⩾ [⩾̸] => ⩾̸ [⩿] => ⩿ [⪀] => ⪀ [⪁] => ⪁ [⪂] => ⪂ [⪃] => ⪃ [⪄] => ⪄ [⪅] => ⪅ [⪆] => ⪆ [⪇] => ⪇ [⪈] => ⪈ [⪉] => ⪉ [⪊] => ⪊ [⪋] => ⪋ [⪌] => ⪌ [⪍] => ⪍ [⪎] => ⪎ [⪏] => ⪏ [⪐] => ⪐ [⪑] => ⪑ [⪒] => ⪒ [⪓] => ⪓ [⪔] => ⪔ [⪕] => ⪕ [⪖] => ⪖ [⪗] => ⪗ [⪘] => ⪘ [⪙] => ⪙ [⪚] => ⪚ [⪝] => ⪝ [⪞] => ⪞ [⪟] => ⪟ [⪠] => ⪠ [⪡] => ⪡ [⪡̸] => ⪡̸ [⪢] => ⪢ [⪢̸] => ⪢̸ [⪤] => ⪤ [⪥] => ⪥ [⪦] => ⪦ [⪧] => ⪧ [⪨] => ⪨ [⪩] => ⪩ [⪪] => ⪪ [⪫] => ⪫ [⪬] => ⪬ [⪬︀] => ⪬︀ [⪭] => ⪭ [⪭︀] => ⪭︀ [⪮] => ⪮ [⪯] => ⪯ [⪯̸] => ⪯̸ [⪰] => ⪰ [⪰̸] => ⪰̸ [⪳] => ⪳ [⪴] => ⪴ [⪵] => ⪵ [⪶] => ⪶ [⪷] => ⪷ [⪸] => ⪸ [⪹] => ⪹ [⪺] => ⪺ [⪻] => ⪻ [⪼] => ⪼ [⪽] => ⪽ [⪾] => ⪾ [⪿] => ⪿ [⫀] => ⫀ [⫁] => ⫁ [⫂] => ⫂ [⫃] => ⫃ [⫄] => ⫄ [⫅] => ⫅ [⫅̸] => ⫅̸ [⫆] => ⫆ [⫆̸] => ⫆̸ [⫇] => ⫇ [⫈] => ⫈ [⫋] => ⫋ [⫋︀] => ⫋︀ [⫌] => ⫌ [⫌︀] => ⫌︀ [⫏] => ⫏ [⫐] => ⫐ [⫑] => ⫑ [⫒] => ⫒ [⫓] => ⫓ [⫔] => ⫔ [⫕] => ⫕ [⫖] => ⫖ [⫗] => ⫗ [⫘] => ⫘ [⫙] => ⫙ [⫚] => ⫚ [⫛] => ⫛ [⫤] => ⫤ [⫦] => ⫦ [⫧] => ⫧ [⫨] => ⫨ [⫩] => ⫩ [⫫] => ⫫ [⫬] => ⫬ [⫭] => ⫭ [⫮] => ⫮ [⫯] => ⫯ [⫰] => ⫰ [⫱] => ⫱ [⫲] => ⫲ [⫳] => ⫳ [⫽] => ⫽ [⫽⃥] => ⫽⃥ [ff] => ff [fi] => fi [fl] => fl [ffi] => ffi [ffl] => ffl [𝒜] => 𝒜 [𝒞] => 𝒞 [𝒟] => 𝒟 [𝒢] => 𝒢 [𝒥] => 𝒥 [𝒦] => 𝒦 [𝒩] => 𝒩 [𝒪] => 𝒪 [𝒫] => 𝒫 [𝒬] => 𝒬 [𝒮] => 𝒮 [𝒯] => 𝒯 [𝒰] => 𝒰 [𝒱] => 𝒱 [𝒲] => 𝒲 [𝒳] => 𝒳 [𝒴] => 𝒴 [𝒵] => 𝒵 [𝒶] => 𝒶 [𝒷] => 𝒷 [𝒸] => 𝒸 [𝒹] => 𝒹 [𝒻] => 𝒻 [𝒽] => 𝒽 [𝒾] => 𝒾 [𝒿] => 𝒿 [𝓀] => 𝓀 [𝓁] => 𝓁 [𝓂] => 𝓂 [𝓃] => 𝓃 [𝓅] => 𝓅 [𝓆] => 𝓆 [𝓇] => 𝓇 [𝓈] => 𝓈 [𝓉] => 𝓉 [𝓊] => 𝓊 [𝓋] => 𝓋 [𝓌] => 𝓌 [𝓍] => 𝓍 [𝓎] => 𝓎 [𝓏] => 𝓏 [𝔄] => 𝔄 [𝔅] => 𝔅 [𝔇] => 𝔇 [𝔈] => 𝔈 [𝔉] => 𝔉 [𝔊] => 𝔊 [𝔍] => 𝔍 [𝔎] => 𝔎 [𝔏] => 𝔏 [𝔐] => 𝔐 [𝔑] => 𝔑 [𝔒] => 𝔒 [𝔓] => 𝔓 [𝔔] => 𝔔 [𝔖] => 𝔖 [𝔗] => 𝔗 [𝔘] => 𝔘 [𝔙] => 𝔙 [𝔚] => 𝔚 [𝔛] => 𝔛 [𝔜] => 𝔜 [𝔞] => 𝔞 [𝔟] => 𝔟 [𝔠] => 𝔠 [𝔡] => 𝔡 [𝔢] => 𝔢 [𝔣] => 𝔣 [𝔤] => 𝔤 [𝔥] => 𝔥 [𝔦] => 𝔦 [𝔧] => 𝔧 [𝔨] => 𝔨 [𝔩] => 𝔩 [𝔪] => 𝔪 [𝔫] => 𝔫 [𝔬] => 𝔬 [𝔭] => 𝔭 [𝔮] => 𝔮 [𝔯] => 𝔯 [𝔰] => 𝔰 [𝔱] => 𝔱 [𝔲] => 𝔲 [𝔳] => 𝔳 [𝔴] => 𝔴 [𝔵] => 𝔵 [𝔶] => 𝔶 [𝔷] => 𝔷 [𝔸] => 𝔸 [𝔹] => 𝔹 [𝔻] => 𝔻 [𝔼] => 𝔼 [𝔽] => 𝔽 [𝔾] => 𝔾 [𝕀] => 𝕀 [𝕁] => 𝕁 [𝕂] => 𝕂 [𝕃] => 𝕃 [𝕄] => 𝕄 [𝕆] => 𝕆 [𝕊] => 𝕊 [𝕋] => 𝕋 [𝕌] => 𝕌 [𝕍] => 𝕍 [𝕎] => 𝕎 [𝕏] => 𝕏 [𝕐] => 𝕐 [𝕒] => 𝕒 [𝕓] => 𝕓 [𝕔] => 𝕔 [𝕕] => 𝕕 [𝕖] => 𝕖 [𝕗] => 𝕗 [𝕘] => 𝕘 [𝕙] => 𝕙 [𝕚] => 𝕚 [𝕛] => 𝕛 [𝕜] => 𝕜 [𝕝] => 𝕝 [𝕞] => 𝕞 [𝕟] => 𝕟 [𝕠] => 𝕠 [𝕡] => 𝕡 [𝕢] => 𝕢 [𝕣] => 𝕣 [𝕤] => 𝕤 [𝕥] => 𝕥 [𝕦] => 𝕦 [𝕧] => 𝕧 [𝕨] => 𝕨 [𝕩] => 𝕩 [𝕪] => 𝕪 [𝕫] => 𝕫 )
4 · encoding
<? $table = HTML_SPECIALCHARS; $flags = ENT_QUOTES | ENT_HTML401; $encoding = "ISO-8859-1"; $return = get_html_translation_table($table, $flags, $encoding); print_r($return);
Array ( ["] => " [&] => & ['] => ' [<] => < [>] => > )
Links
String
- addcslashes
- addslashes
- bin2hex
- chop
- chr
- chunk_split
- convert_uudecode
- convert_uuencode
- count_chars
- crc32
- crypt
- echo
- explode
- fprintf
- hebrev
- hebrevc
- hex2bin
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- implode
- join
- lcfirst
- levenshtein
- localeconv
- ltrim
- md5
- md5_file
- metaphone
- nl_langinfo
- nl2br
- number_format
- ord
- parse_str
- printf
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- rtrim
- setlocale
- sha1
- sha1_file
- similar_text
- soundex
- sprintf
- sscanf
- str_contains
- str_decrement
- str_ends_with
- str_getcsv
- str_increment
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_starts_with
- str_word_count
- strcasecmp
- strchr
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap