4 Star 6 Fork 4

上帝禁区 / php_extension_config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
php_load_config.h 2.98 KB
一键复制 编辑 原始数据 按行查看 历史
上帝禁区 提交于 2013-09-29 11:40 . 初次提交
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2012 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: |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifndef PHP_CONFIG_H
#define PHP_CONFIG_H
extern zend_module_entry config_module_entry;
#define phpext_config_ptr &config_module_entry
#ifdef PHP_WIN32
# define PHP_CONFIG_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_CONFIG_API __attribute__ ((visibility("default")))
#else
# define PHP_CONFIG_API
#endif
#ifdef ZTS
#include "TSRM.h"
#endif
#define CONFIG_TYPE_UNKONW -1
#define CONFIG_TYPE_DEFINE 0
#define CONFIG_TYPE_CONFIG 1
PHP_MINIT_FUNCTION(config);
PHP_MSHUTDOWN_FUNCTION(config);
PHP_RINIT_FUNCTION(config);
PHP_RSHUTDOWN_FUNCTION(config);
PHP_MINFO_FUNCTION(config);
PHP_FUNCTION(config); /* For testing, remove later. */
struct _SLIST{
int length;
struct _node *first;
struct _node *last;
};
struct _node
{
int hashcode;
char *key;
char *data;
struct _node *next;
};
typedef struct _node node;
typedef struct _SLIST SLIST;
/*
Declare any global variables you may need between the BEGIN
and END macros here:
*/
ZEND_BEGIN_MODULE_GLOBALS(config)
char *path;
SLIST *slist;
ZEND_END_MODULE_GLOBALS(config)
/* In every utility function you add that needs to use variables
in php_config_globals, call TSRMLS_FETCH(); after declaring other
variables used by that function, or better yet, pass in TSRMLS_CC
after the last function argument and declare your utility function
with TSRMLS_DC after the last declared argument. Always refer to
the globals in your function as CONFIG_G(variable). You are
encouraged to rename these macros something shorter, see
examples in any other php module directory.
*/
#ifdef ZTS
#define CONFIG_G(v) TSRMG(config_globals_id, zend_config_globals *, v)
#else
#define CONFIG_G(v) (config_globals.v)
#endif
#endif /* PHP_CONFIG_H */
/*
* 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
*/
C
1
https://gitee.com/365690485/php_extension_config.git
git@gitee.com:365690485/php_extension_config.git
365690485
php_extension_config
php_extension_config
master

搜索帮助