mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
91e44a27f6
skeleton can still be leveraged with older PHP releases, including PHP 7.2. I wanted to add this capability since PHP 7.2 is still widely provided with most Linux distributions. I am using ext_skel.php on a vanilla Ubuntu 18.04 and Windows in order to illustrate how to develop a PHP extension for both OS using the default tools provided by the distributions. see: https://github.com/vjardin/php-bonjour
111 lines
2.3 KiB
C
111 lines
2.3 KiB
C
%HEADER%
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "php.h"
|
|
#include "ext/standard/info.h"
|
|
#include "php_%EXTNAME%.h"
|
|
|
|
/* For compatibility with older PHP versions */
|
|
#ifndef ZEND_PARSE_PARAMETERS_NONE
|
|
#define ZEND_PARSE_PARAMETERS_NONE() \
|
|
ZEND_PARSE_PARAMETERS_START(0, 0) \
|
|
ZEND_PARSE_PARAMETERS_END()
|
|
#endif
|
|
|
|
/* {{{ void %EXTNAME%_test1()
|
|
*/
|
|
PHP_FUNCTION(%EXTNAME%_test1)
|
|
{
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
|
|
php_printf("The extension %s is loaded and working!\r\n", "%EXTNAME%");
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ string %EXTNAME%_test2( [ string $var ] )
|
|
*/
|
|
PHP_FUNCTION(%EXTNAME%_test2)
|
|
{
|
|
char *var = "World";
|
|
size_t var_len = sizeof("World") - 1;
|
|
zend_string *retval;
|
|
|
|
ZEND_PARSE_PARAMETERS_START(0, 1)
|
|
Z_PARAM_OPTIONAL
|
|
Z_PARAM_STRING(var, var_len)
|
|
ZEND_PARSE_PARAMETERS_END();
|
|
|
|
retval = strpprintf(0, "Hello %s", var);
|
|
|
|
RETURN_STR(retval);
|
|
}
|
|
/* }}}*/
|
|
|
|
/* {{{ PHP_RINIT_FUNCTION
|
|
*/
|
|
PHP_RINIT_FUNCTION(%EXTNAME%)
|
|
{
|
|
#if defined(ZTS) && defined(COMPILE_DL_%EXTNAMECAPS%)
|
|
ZEND_TSRMLS_CACHE_UPDATE();
|
|
#endif
|
|
|
|
return SUCCESS;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ PHP_MINFO_FUNCTION
|
|
*/
|
|
PHP_MINFO_FUNCTION(%EXTNAME%)
|
|
{
|
|
php_info_print_table_start();
|
|
php_info_print_table_header(2, "%EXTNAME% support", "enabled");
|
|
php_info_print_table_end();
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ arginfo
|
|
*/
|
|
ZEND_BEGIN_ARG_INFO(arginfo_%EXTNAME%_test1, 0)
|
|
ZEND_END_ARG_INFO()
|
|
|
|
ZEND_BEGIN_ARG_INFO(arginfo_%EXTNAME%_test2, 0)
|
|
ZEND_ARG_INFO(0, str)
|
|
ZEND_END_ARG_INFO()
|
|
/* }}} */
|
|
|
|
/* {{{ %EXTNAME%_functions[]
|
|
*/
|
|
static const zend_function_entry %EXTNAME%_functions[] = {
|
|
PHP_FE(%EXTNAME%_test1, arginfo_%EXTNAME%_test1)
|
|
PHP_FE(%EXTNAME%_test2, arginfo_%EXTNAME%_test2)
|
|
PHP_FE_END
|
|
};
|
|
/* }}} */
|
|
|
|
/* {{{ %EXTNAME%_module_entry
|
|
*/
|
|
zend_module_entry %EXTNAME%_module_entry = {
|
|
STANDARD_MODULE_HEADER,
|
|
"%EXTNAME%", /* Extension name */
|
|
%EXTNAME%_functions, /* zend_function_entry */
|
|
NULL, /* PHP_MINIT - Module initialization */
|
|
NULL, /* PHP_MSHUTDOWN - Module shutdown */
|
|
PHP_RINIT(%EXTNAME%), /* PHP_RINIT - Request initialization */
|
|
NULL, /* PHP_RSHUTDOWN - Request shutdown */
|
|
PHP_MINFO(%EXTNAME%), /* PHP_MINFO - Module info */
|
|
PHP_%EXTNAMECAPS%_VERSION, /* Version */
|
|
STANDARD_MODULE_PROPERTIES
|
|
};
|
|
/* }}} */
|
|
|
|
#ifdef COMPILE_DL_%EXTNAMECAPS%
|
|
# ifdef ZTS
|
|
ZEND_TSRMLS_CACHE_DEFINE()
|
|
# endif
|
|
ZEND_GET_MODULE(%EXTNAME%)
|
|
#endif
|
|
%FOOTER%
|