Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.218.124.105
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php72 /
usr /
include /
php /
main /
Delete
Unzip
Name
Size
Permission
Date
Action
streams
[ DIR ]
drwxr-xr-x
2025-03-27 08:39
SAPI.h
10.04
KB
-rw-r--r--
2025-03-03 14:52
build-defs.h
7.63
KB
-rw-r--r--
2025-03-03 14:52
fastcgi.h
5.04
KB
-rw-r--r--
2025-03-03 14:52
fopen_wrappers.h
2.48
KB
-rw-r--r--
2025-03-03 14:52
http_status_codes.h
3.11
KB
-rw-r--r--
2025-03-03 14:52
php.h
13.16
KB
-rw-r--r--
2025-03-03 14:52
php_compat.h
18.71
KB
-rw-r--r--
2025-03-03 14:52
php_config.h
57.96
KB
-rw-r--r--
2025-03-03 14:52
php_content_types.h
1.59
KB
-rw-r--r--
2025-03-03 14:52
php_getopt.h
1.82
KB
-rw-r--r--
2025-03-03 14:52
php_globals.h
4.27
KB
-rw-r--r--
2025-03-03 14:52
php_ini.h
3.81
KB
-rw-r--r--
2025-03-03 14:52
php_main.h
2.65
KB
-rw-r--r--
2025-03-03 14:52
php_memory_streams.h
3.38
KB
-rw-r--r--
2025-03-03 14:52
php_network.h
10.15
KB
-rw-r--r--
2025-03-03 14:52
php_open_temporary_file.h
1.83
KB
-rw-r--r--
2025-03-03 14:52
php_output.h
9.55
KB
-rw-r--r--
2025-03-03 14:52
php_reentrancy.h
3.73
KB
-rw-r--r--
2025-03-03 14:52
php_scandir.h
2.01
KB
-rw-r--r--
2025-03-03 14:52
php_stdint.h
5.21
KB
-rw-r--r--
2025-03-03 14:52
php_streams.h
28.68
KB
-rw-r--r--
2025-03-03 14:52
php_syslog.h
1.66
KB
-rw-r--r--
2025-03-03 14:52
php_ticks.h
1.6
KB
-rw-r--r--
2025-03-03 14:52
php_variables.h
2.14
KB
-rw-r--r--
2025-03-03 14:52
php_version.h
266
B
-rw-r--r--
2025-03-03 14:52
rfc1867.h
3.42
KB
-rw-r--r--
2025-03-03 14:52
snprintf.h
7.05
KB
-rw-r--r--
2025-03-03 14:52
spprintf.h
1.74
KB
-rw-r--r--
2025-03-03 14:52
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2018 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: Marcus Boerger <helly@php.net> | +----------------------------------------------------------------------+ */ /* $Id$ */ #ifndef PHP_GETOPT_H #define PHP_GETOPT_H #include "php.h" /* Define structure for one recognized option (both single char and long name). * If short_open is '-' this is the last option. */ typedef struct _opt_struct { char opt_char; int need_param; char * opt_name; } opt_struct; BEGIN_EXTERN_C() /* holds the index of the latest fetched element from the opts array */ extern PHPAPI int php_optidx; PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *optind, int show_err, int arg_start); END_EXTERN_C() #endif /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: * vim600: noet sw=4 ts=4 fdm=marker * vim<600: noet sw=4 ts=4 */