Browse Source

Added various functions that relies on the iconv facility:

iconv_strlen(), iconv_substr(), iconv_strpos(), iconv_strrpos(),
iconv_mime_encode(), iconv_mime_decode()

# hope this be a new year gift for you. Happy new year!
PHP-5
Moriyoshi Koizumi 23 years ago
parent
commit
c4e8b2baab
  1. 1274
      ext/iconv/iconv.c
  2. 6
      ext/iconv/php_iconv.h

1274
ext/iconv/iconv.c
File diff suppressed because it is too large
View File

6
ext/iconv/php_iconv.h

@ -44,6 +44,12 @@ PHP_NAMED_FUNCTION(php_if_iconv);
PHP_FUNCTION(ob_iconv_handler);
PHP_FUNCTION(iconv_get_encoding);
PHP_FUNCTION(iconv_set_encoding);
PHP_FUNCTION(iconv_strlen);
PHP_FUNCTION(iconv_substr);
PHP_FUNCTION(iconv_strpos);
PHP_FUNCTION(iconv_strrpos);
PHP_FUNCTION(iconv_mime_encode);
PHP_FUNCTION(iconv_mime_decode);
ZEND_BEGIN_MODULE_GLOBALS(iconv)
char *input_encoding;

Loading…
Cancel
Save