ID: 34856
User updated by: begemot at php dot com dot ua
Reported By: begemot at php dot com dot ua
-Status: Feedback
+Status: Open
Bug Type: ICONV related
Operating System: FreeBSD 5.4-RELEASE
PHP Version: 5.1.0RC1
New Comment:
libiconv-1.9.2_1
[EMAIL PROTECTED]/usr/home/begemot/php5-200510131030>./sapi/cli/php -r
'var_dump(get_extension_funcs("iconv"));'
array(11) {
[0]=>
string(8) "libiconv"
...
Previous Comments:
------------------------------------------------------------------------
[2005-10-13 16:13:59] [EMAIL PROTECTED]
Can't reproduce.
FreeBSD 5.4-STABLE
libiconv-1.9.1_3
PHP 5.1.0RC2-dev (cli) (built: Oct 13 2005 14:14:17) (DEBUG)
./sapi/cli/php -r 'var_dump(get_extension_funcs("iconv"));'
array(11) {
[0]=>
string(5) "iconv"
...
------------------------------------------------------------------------
[2005-10-13 14:36:57] begemot at php dot com dot ua
Description:
------------
Pleas reopen bug http://bugs.php.net/bug.php?id=32244
Get version from http://snaps.php.net/php5-200510131030.tar.bz2
configure options
>cat myconfigure
#!/bin/sh
./configure --with-apxs2 --with-layout --with-libxml-dir
--with-zlib --enable-bcmath --with-bz2 --with-curl --enable-ftp
--with-gd --with-jpeg-dir --with-png-dir --with-xpm-dir --with-ttf
--with-freetype-dir --with-t1lib --enable-gd-native-ttf
--with-gettext --with-mcrypt --with-mhash --with-mysql=/usr/local
--with-mysqli=/usr/local/bin/mysql_config --with-ncurses
--enable-sockets --enable-sqlite-utf8 --with-xmlreader --with-xsl
--without-pear --with-iconv --with-pdo-mysql=/usr/local
--enable-mbstring
>php -v
PHP 5.1.0RC2-dev (cli) (built: Oct 13 2005 15:14:18)
Copyright (c) 1997-2005 The PHP Group
Zend Engine v2.1.0-dev, Copyright (c) 1998-2005 Zend Technologies
Reproduce code:
---------------
<?php
var_dump(get_extension_funcs("iconv"));
?>
>php test.php
array(11) {
[0]=>
string(8) "libiconv"
[1]=>
string(16) "ob_iconv_handler"
[2]=>
string(18) "iconv_get_encoding"
[3]=>
string(18) "iconv_set_encoding"
[4]=>
string(12) "iconv_strlen"
[5]=>
string(12) "iconv_substr"
[6]=>
string(12) "iconv_strpos"
[7]=>
string(13) "iconv_strrpos"
[8]=>
string(17) "iconv_mime_encode"
[9]=>
string(17) "iconv_mime_decode"
[10]=>
string(25) "iconv_mime_decode_headers"
}
array
0 => 'libiconv'
1 => 'ob_iconv_handler'
2 => 'iconv_get_encoding'
3 => 'iconv_set_encoding'
4 => 'iconv_strlen'
5 => 'iconv_substr'
6 => 'iconv_strpos'
7 => 'iconv_strrpos'
8 => 'iconv_mime_encode'
9 => 'iconv_mime_decode'
10 => 'iconv_mime_decode_headers'
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34856&edit=1