📄 mbstring.h
字号:
/* +----------------------------------------------------------------------+ | PHP Version 4 | +----------------------------------------------------------------------+ | Copyright (c) 2001 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | 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. | +----------------------------------------------------------------------+ | Author: Tsukada Takuya <tsukada@fminn.nagano.nagano.jp> | +----------------------------------------------------------------------+ *//* $Id: mbstring.h,v 1.40.2.12.4.5 2006/04/03 13:04:13 masugata Exp $ *//* * PHP4 Multibyte String module "mbstring" (currently only for Japanese) * * History: * 2000.5.19 Release php-4.0RC2_jstring-1.0 * 2001.4.1 Release php4_jstring-1.0.91 * 2001.4.30 Release php4-jstring-1.1 (contribute to The PHP Group) * 2001.5.1 Renamed from jstring to mbstring (hirokawa@php.net) *//* * PHP3 Internationalization support program. * * Copyright (c) 1999,2000 by the PHP3 internationalization team. * All rights reserved. * * See README_PHP3-i18n-ja for more detail. * * Authors: * Hironori Sato <satoh@jpnnet.com> * Shigeru Kanemoto <sgk@happysize.co.jp> * Tsukada Takuya <tsukada@fminn.nagano.nagano.jp> */#ifndef _MBSTRING_H#define _MBSTRING_H#ifdef COMPILE_DL_MBSTRING#undef HAVE_MBSTRING#define HAVE_MBSTRING 1#endif#ifdef PHP_WIN32# undef MBSTRING_API# ifdef MBSTRING_EXPORTS# define MBSTRING_API __declspec(dllexport)# else# define MBSTRING_API __declspec(dllimport)# endif#else# undef MBSTRING_API# define MBSTRING_API /* nothing special */#endif#if HAVE_MBSTRING#include "libmbfl/mbfl/mbfilter.h"#include "SAPI.h"#define PHP_MBSTRING_API 20021024#if HAVE_MBREGEX#include "php_mbregex.h"#endifextern zend_module_entry mbstring_module_entry;#define mbstring_module_ptr &mbstring_module_entryPHP_MINIT_FUNCTION(mbstring);PHP_MSHUTDOWN_FUNCTION(mbstring);PHP_RINIT_FUNCTION(mbstring);PHP_RSHUTDOWN_FUNCTION(mbstring);PHP_MINFO_FUNCTION(mbstring);/* functions in php_unicode.c */PHP_FUNCTION(mb_convert_case);PHP_FUNCTION(mb_strtoupper);PHP_FUNCTION(mb_strtolower);/* php function registration */PHP_FUNCTION(mb_language);PHP_FUNCTION(mb_internal_encoding);PHP_FUNCTION(mb_http_input);PHP_FUNCTION(mb_http_output);PHP_FUNCTION(mb_detect_order);PHP_FUNCTION(mb_substitute_character);PHP_FUNCTION(mb_preferred_mime_name);PHP_FUNCTION(mb_parse_str);PHP_FUNCTION(mb_output_handler);PHP_FUNCTION(mb_strlen);PHP_FUNCTION(mb_strpos);PHP_FUNCTION(mb_strrpos);PHP_FUNCTION(mb_substr_count);PHP_FUNCTION(mb_substr);PHP_FUNCTION(mb_strcut);PHP_FUNCTION(mb_strwidth);PHP_FUNCTION(mb_strimwidth);PHP_FUNCTION(mb_convert_encoding);PHP_FUNCTION(mb_detect_encoding);PHP_FUNCTION(mb_convert_kana);PHP_FUNCTION(mb_encode_mimeheader);PHP_FUNCTION(mb_decode_mimeheader);PHP_FUNCTION(mb_convert_variables);PHP_FUNCTION(mb_encode_numericentity);PHP_FUNCTION(mb_decode_numericentity);PHP_FUNCTION(mb_send_mail);PHP_FUNCTION(mb_get_info);PHP_FUNCTION(mb_check_encoding);MBSTRING_API int php_mb_encoding_translation(TSRMLS_D);MBSTRING_API char *php_mb_safe_strrchr_ex(const char *s, unsigned int c, size_t nbytes, const mbfl_encoding *enc);MBSTRING_API char *php_mb_safe_strrchr(const char *s, unsigned int c, size_t nbytes TSRMLS_DC);MBSTRING_API char *php_mb_strrchr(const char *s, char c TSRMLS_DC);MBSTRING_API char * php_mb_convert_encoding(char *input, size_t length, char *_to_encoding, char *_from_encodings, size_t *output_len TSRMLS_DC);MBSTRING_API int php_mb_check_encoding_list(const char *encoding_list TSRMLS_DC);MBSTRING_API size_t php_mb_mbchar_bytes_ex(const char *s, const mbfl_encoding *enc);MBSTRING_API size_t php_mb_mbchar_bytes(const char *s TSRMLS_DC);MBSTRING_API size_t php_mb_gpc_mbchar_bytes(const char *s TSRMLS_DC);MBSTRING_API int php_mb_encoding_detector_ex(const char *arg_string, int arg_length, char *arg_list TSRMLS_DC);MBSTRING_API int php_mb_encoding_converter_ex(char **str, int *len, const char *encoding_to, const char *encoding_from TSRMLS_DC);MBSTRING_API int php_mb_gpc_encoding_converter(char **str, int *len, int num, const char *encoding_to, const char *encoding_from TSRMLS_DC);MBSTRING_API int php_mb_gpc_encoding_detector(char **arg_string, int *arg_length, int num, char *arg_list TSRMLS_DC);ZEND_BEGIN_MODULE_GLOBALS(mbstring) enum mbfl_no_language language; enum mbfl_no_language current_language; enum mbfl_no_encoding internal_encoding; enum mbfl_no_encoding current_internal_encoding;#ifdef ZEND_MULTIBYTE enum mbfl_no_encoding *script_encoding_list; int script_encoding_list_size;#endif /* ZEND_MULTIBYTE */ enum mbfl_no_encoding http_output_encoding; enum mbfl_no_encoding current_http_output_encoding; enum mbfl_no_encoding http_input_identify; enum mbfl_no_encoding http_input_identify_get; enum mbfl_no_encoding http_input_identify_post; enum mbfl_no_encoding http_input_identify_cookie; enum mbfl_no_encoding http_input_identify_string; enum mbfl_no_encoding *http_input_list; int http_input_list_size; enum mbfl_no_encoding *detect_order_list; int detect_order_list_size; enum mbfl_no_encoding *current_detect_order_list; int current_detect_order_list_size; enum mbfl_no_encoding *default_detect_order_list; int default_detect_order_list_size; int filter_illegal_mode; int filter_illegal_substchar; int current_filter_illegal_mode; int current_filter_illegal_substchar; long func_overload; zend_bool encoding_translation; long illegalchars; mbfl_buffer_converter *outconv;#if HAVE_MBREGEX && defined(PHP_MBREGEX_GLOBALS) PHP_MBREGEX_GLOBALS #endifZEND_END_MODULE_GLOBALS(mbstring)#define MB_OVERLOAD_MAIL 1#define MB_OVERLOAD_STRING 2#define MB_OVERLOAD_REGEX 4struct mb_overload_def { int type; char *orig_func; char *ovld_func; char *save_func;};#ifdef ZTS#define MBSTRG(v) TSRMG(mbstring_globals_id, zend_mbstring_globals *, v)#else#define MBSTRG(v) (mbstring_globals.v)#endif#ifdef ZEND_MULTIBYTEMBSTRING_API int php_mb_set_zend_encoding(TSRMLS_D);char* php_mb_encoding_detector(const char *string, int length, char *list TSRMLS_DC);int php_mb_encoding_converter(char **to, int *to_length, const char *from, int from_length, const char *encoding_to, const char *encoding_from TSRMLS_DC);int php_mb_oddlen(const char *string, int length, const char *encoding TSRMLS_DC);#endif /* ZEND_MULTIBYTE */SAPI_POST_HANDLER_FUNC(php_mbstr_post_handler);MBSTRING_API SAPI_TREAT_DATA_FUNC(mbstr_treat_data);#else /* HAVE_MBSTRING */#define mbstring_module_ptr NULL#endif /* HAVE_MBSTRING */#define phpext_mbstring_ptr mbstring_module_ptr#endif /* _MBSTRING_H *//* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -