2001-01-09 23:22:45 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2001-01-09 23:22:45 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2012-01-01 21:15:04 +08:00
|
|
|
| Copyright (c) 1997-2012 The PHP Group |
|
2001-01-09 23:22:45 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2001-01-09 23:22:45 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2001-01-09 23:22:45 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2001-12-13 22:31:16 +08:00
|
|
|
| Authors: Rui Hirokawa <rui_hirokawa@ybb.ne.jp> |
|
2003-03-18 20:06:09 +08:00
|
|
|
| Stig Bakken <ssb@php.net> |
|
2001-01-09 23:22:45 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2012-03-21 00:53:47 +08:00
|
|
|
/* $Id$ */
|
2003-07-07 01:52:42 +08:00
|
|
|
|
2001-01-09 23:22:45 +08:00
|
|
|
#ifndef PHP_ICONV_H
|
|
|
|
#define PHP_ICONV_H
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
2009-12-24 05:06:26 +08:00
|
|
|
# ifdef PHP_ICONV_EXPORTS
|
|
|
|
# define PHP_ICONV_API __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define PHP_ICONV_API __declspec(dllimport)
|
|
|
|
# endif
|
2008-01-30 17:41:12 +08:00
|
|
|
#elif defined(__GNUC__) && __GNUC__ >= 4
|
2009-12-24 05:06:26 +08:00
|
|
|
# define PHP_ICONV_API __attribute__ ((visibility("default")))
|
2001-01-09 23:22:45 +08:00
|
|
|
#else
|
2009-12-24 05:06:26 +08:00
|
|
|
# define PHP_ICONV_API
|
2001-01-09 23:22:45 +08:00
|
|
|
#endif
|
|
|
|
|
2002-03-20 21:24:59 +08:00
|
|
|
#ifdef PHP_ATOM_INC
|
2004-12-07 04:39:20 +08:00
|
|
|
#include "ext/iconv/php_have_iconv.h"
|
|
|
|
#include "ext/iconv/php_have_libiconv.h"
|
2010-03-08 23:51:08 +08:00
|
|
|
#include "ext/iconv/php_iconv_aliased_libiconv.h"
|
2004-12-07 04:39:20 +08:00
|
|
|
#include "ext/iconv/php_have_glibc_iconv.h"
|
|
|
|
#include "ext/iconv/php_have_bsd_iconv.h"
|
2007-12-04 19:27:25 +08:00
|
|
|
#include "ext/iconv/php_have_ibm_iconv.h"
|
2004-12-07 04:39:20 +08:00
|
|
|
#include "ext/iconv/php_iconv_supports_errno.h"
|
|
|
|
#include "ext/iconv/php_php_iconv_impl.h"
|
|
|
|
#include "ext/iconv/php_php_iconv_h_path.h"
|
2002-03-20 21:24:59 +08:00
|
|
|
#endif
|
|
|
|
|
2002-09-04 13:17:16 +08:00
|
|
|
#ifdef HAVE_ICONV
|
2001-05-28 03:43:16 +08:00
|
|
|
extern zend_module_entry iconv_module_entry;
|
2002-03-05 07:28:17 +08:00
|
|
|
#define iconv_module_ptr &iconv_module_entry
|
2001-05-28 03:43:16 +08:00
|
|
|
|
|
|
|
PHP_MINIT_FUNCTION(miconv);
|
|
|
|
PHP_MSHUTDOWN_FUNCTION(miconv);
|
|
|
|
PHP_MINFO_FUNCTION(miconv);
|
2001-01-09 23:22:45 +08:00
|
|
|
|
2001-10-22 10:28:00 +08:00
|
|
|
PHP_NAMED_FUNCTION(php_if_iconv);
|
2001-01-09 23:22:45 +08:00
|
|
|
PHP_FUNCTION(ob_iconv_handler);
|
2001-01-14 15:40:16 +08:00
|
|
|
PHP_FUNCTION(iconv_get_encoding);
|
2001-01-09 23:22:45 +08:00
|
|
|
PHP_FUNCTION(iconv_set_encoding);
|
2003-01-01 03:13:16 +08:00
|
|
|
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);
|
2003-12-02 06:47:03 +08:00
|
|
|
PHP_FUNCTION(iconv_mime_decode_headers);
|
2001-01-09 23:22:45 +08:00
|
|
|
|
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(iconv)
|
2001-01-14 15:40:16 +08:00
|
|
|
char *input_encoding;
|
|
|
|
char *internal_encoding;
|
|
|
|
char *output_encoding;
|
2001-01-09 23:22:45 +08:00
|
|
|
ZEND_END_MODULE_GLOBALS(iconv)
|
|
|
|
|
|
|
|
#ifdef ZTS
|
2009-12-24 05:06:26 +08:00
|
|
|
# define ICONVG(v) TSRMG(iconv_globals_id, zend_iconv_globals *, v)
|
2001-01-09 23:22:45 +08:00
|
|
|
#else
|
2009-12-24 05:06:26 +08:00
|
|
|
# define ICONVG(v) (iconv_globals.v)
|
2001-01-09 23:22:45 +08:00
|
|
|
#endif
|
|
|
|
|
2007-12-04 19:27:25 +08:00
|
|
|
#ifdef HAVE_IBM_ICONV
|
|
|
|
# define ICONV_INPUT_ENCODING "ISO8859-1"
|
|
|
|
# define ICONV_OUTPUT_ENCODING "ISO8859-1"
|
|
|
|
# define ICONV_INTERNAL_ENCODING "ISO8859-1"
|
|
|
|
# define ICONV_ASCII_ENCODING "IBM-850"
|
2008-05-21 23:03:20 +08:00
|
|
|
# define ICONV_UCS4_ENCODING "UCS-4"
|
2007-12-04 19:27:25 +08:00
|
|
|
#else
|
|
|
|
# define ICONV_INPUT_ENCODING "ISO-8859-1"
|
|
|
|
# define ICONV_OUTPUT_ENCODING "ISO-8859-1"
|
|
|
|
# define ICONV_INTERNAL_ENCODING "ISO-8859-1"
|
|
|
|
# define ICONV_ASCII_ENCODING "ASCII"
|
2008-05-21 23:03:20 +08:00
|
|
|
# define ICONV_UCS4_ENCODING "UCS-4LE"
|
2007-12-04 19:27:25 +08:00
|
|
|
#endif
|
2001-01-09 23:22:45 +08:00
|
|
|
|
2007-09-19 08:30:52 +08:00
|
|
|
#ifndef ICONV_CSNMAXLEN
|
|
|
|
#define ICONV_CSNMAXLEN 64
|
|
|
|
#endif
|
|
|
|
|
2004-11-23 17:44:54 +08:00
|
|
|
/* {{{ typedef enum php_iconv_err_t */
|
|
|
|
typedef enum _php_iconv_err_t {
|
|
|
|
PHP_ICONV_ERR_SUCCESS = SUCCESS,
|
|
|
|
PHP_ICONV_ERR_CONVERTER = 1,
|
|
|
|
PHP_ICONV_ERR_WRONG_CHARSET = 2,
|
|
|
|
PHP_ICONV_ERR_TOO_BIG = 3,
|
|
|
|
PHP_ICONV_ERR_ILLEGAL_SEQ = 4,
|
|
|
|
PHP_ICONV_ERR_ILLEGAL_CHAR = 5,
|
|
|
|
PHP_ICONV_ERR_UNKNOWN = 6,
|
|
|
|
PHP_ICONV_ERR_MALFORMED = 7,
|
|
|
|
PHP_ICONV_ERR_ALLOC = 8
|
|
|
|
} php_iconv_err_t;
|
|
|
|
/* }}} */
|
|
|
|
|
2006-02-19 00:02:43 +08:00
|
|
|
PHP_ICONV_API php_iconv_err_t php_iconv_string(const char * in_p, size_t in_len, char **out, size_t *out_len, const char *out_charset, const char *in_charset);
|
2004-11-23 17:44:54 +08:00
|
|
|
|
2002-03-05 07:28:17 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define iconv_module_ptr NULL
|
|
|
|
|
|
|
|
#endif /* HAVE_ICONV */
|
|
|
|
|
|
|
|
#define phpext_iconv_ptr iconv_module_ptr
|
|
|
|
|
2001-01-09 23:22:45 +08:00
|
|
|
#endif /* PHP_ICONV_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|