Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
alt-php73-common /
Delete
Unzip
Name
Size
Permission
Date
Action
CODING_STANDARDS
12.43
KB
-rw-r--r--
2021-11-16 11:18
CREDITS
93
B
-rw-r--r--
2021-11-16 11:18
INSTALL
105
B
-rw-r--r--
2021-11-16 11:18
LICENSE
3.13
KB
-rw-r--r--
2021-11-16 11:18
NEWS
92.14
KB
-rw-r--r--
2021-11-16 11:18
README.EXT_SKEL
1.35
KB
-rw-r--r--
2021-11-16 11:18
README.GIT-RULES
5.16
KB
-rw-r--r--
2021-11-16 11:18
README.MAILINGLIST_RULES
3.35
KB
-rw-r--r--
2021-11-16 11:18
README.NEW-OUTPUT-API
5.05
KB
-rw-r--r--
2021-11-16 11:18
README.PARAMETER_PARSING_API
7.64
KB
-rw-r--r--
2021-11-16 11:18
README.REDIST.BINS
24.16
KB
-rw-r--r--
2021-11-16 11:18
README.RELEASE_PROCESS
15.32
KB
-rw-r--r--
2021-11-16 11:18
README.SELF-CONTAINED-EXTENSIONS
4.87
KB
-rw-r--r--
2021-11-16 11:18
README.STREAMS
14.95
KB
-rw-r--r--
2021-11-16 11:18
README.SUBMITTING_PATCH
7.93
KB
-rw-r--r--
2021-11-16 11:18
README.TESTING
11.36
KB
-rw-r--r--
2021-11-16 11:18
README.UNIX-BUILD-SYSTEM
4.16
KB
-rw-r--r--
2021-11-16 11:18
README.WIN32-BUILD-SYSTEM
114
B
-rw-r--r--
2021-11-16 11:18
README.input_filter
5.19
KB
-rw-r--r--
2021-11-16 11:18
README.md
1.57
KB
-rw-r--r--
2021-11-16 11:18
TSRM_LICENSE
1.28
KB
-rw-r--r--
2021-11-16 11:18
ZEND_LICENSE
2.74
KB
-rw-r--r--
2021-11-16 11:18
php.ini-development
69.7
KB
-rw-r--r--
2021-11-16 11:18
php.ini-production
69.88
KB
-rw-r--r--
2021-11-16 11:18
Save
Rename
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.