1--TEST--
2Bug #61116 (HTML functions use encoding, not charset)
3--FILE--
4<?php
5echo new ReflectionFunction('htmlspecialchars'), "\n";
6echo new ReflectionFunction('get_html_translation_table'), "\n";
7?>
8--EXPECT--
9Function [ <internal:standard> function htmlspecialchars ] {
10
11  - Parameters [4] {
12    Parameter #0 [ <required> $string ]
13    Parameter #1 [ <optional> $quote_style ]
14    Parameter #2 [ <optional> $encoding ]
15    Parameter #3 [ <optional> $double_encode ]
16  }
17}
18
19Function [ <internal:standard> function get_html_translation_table ] {
20
21  - Parameters [3] {
22    Parameter #0 [ <optional> $table ]
23    Parameter #1 [ <optional> $quote_style ]
24    Parameter #2 [ <optional> $encoding ]
25  }
26}
27