From 6fe89e3c14ec53db7c21b3717d1e9a98c0db855d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 4 Dec 2012 09:10:46 +0100 Subject: PHP 5.5: save extension reflection --- reflection/iconv.txt | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 reflection/iconv.txt (limited to 'reflection/iconv.txt') diff --git a/reflection/iconv.txt b/reflection/iconv.txt new file mode 100644 index 0000000..21e89b1 --- /dev/null +++ b/reflection/iconv.txt @@ -0,0 +1,103 @@ +Extension [ extension #17 iconv version ] { + + - INI { + Entry [ iconv.input_encoding ] + Current = 'ISO-8859-1' + } + Entry [ iconv.output_encoding ] + Current = 'ISO-8859-1' + } + Entry [ iconv.internal_encoding ] + Current = 'ISO-8859-1' + } + } + + - Constants [4] { + Constant [ string ICONV_IMPL ] { glibc } + Constant [ string ICONV_VERSION ] { 2.15 } + Constant [ integer ICONV_MIME_DECODE_STRICT ] { 1 } + Constant [ integer ICONV_MIME_DECODE_CONTINUE_ON_ERROR ] { 2 } + } + + - Functions { + Function [ function iconv ] { + + - Parameters [3] { + Parameter #0 [ $in_charset ] + Parameter #1 [ $out_charset ] + Parameter #2 [ $str ] + } + } + Function [ function iconv_get_encoding ] { + + - Parameters [1] { + Parameter #0 [ $type ] + } + } + Function [ function iconv_set_encoding ] { + + - Parameters [2] { + Parameter #0 [ $type ] + Parameter #1 [ $charset ] + } + } + Function [ function iconv_strlen ] { + + - Parameters [2] { + Parameter #0 [ $str ] + Parameter #1 [ $charset ] + } + } + Function [ function iconv_substr ] { + + - Parameters [4] { + Parameter #0 [ $str ] + Parameter #1 [ $offset ] + Parameter #2 [ $length ] + Parameter #3 [ $charset ] + } + } + Function [ function iconv_strpos ] { + + - Parameters [4] { + Parameter #0 [ $haystack ] + Parameter #1 [ $needle ] + Parameter #2 [ $offset ] + Parameter #3 [ $charset ] + } + } + Function [ function iconv_strrpos ] { + + - Parameters [3] { + Parameter #0 [ $haystack ] + Parameter #1 [ $needle ] + Parameter #2 [ $charset ] + } + } + Function [ function iconv_mime_encode ] { + + - Parameters [3] { + Parameter #0 [ $field_name ] + Parameter #1 [ $field_value ] + Parameter #2 [ $preference ] + } + } + Function [ function iconv_mime_decode ] { + + - Parameters [3] { + Parameter #0 [ $encoded_string ] + Parameter #1 [ $mode ] + Parameter #2 [ $charset ] + } + } + Function [ function iconv_mime_decode_headers ] { + + - Parameters [3] { + Parameter #0 [ $headers ] + Parameter #1 [ $mode ] + Parameter #2 [ $charset ] + } + } + } +} + -- cgit