1 Star 0 Fork 21

Single / PhpExcel

forked from 张奇峰 / PhpExcel 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
PhpExcel.h 791 Bytes
一键复制 编辑 原始数据 按行查看 历史
张奇峰 提交于 2019-07-12 14:13 . PhpExcel扩展初始化
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
/*
Author: Yax
uRL: https://github.com/zydp
*/
ZEND_BEGIN_MODULE_GLOBALS(PhpExcel)
//globals
ZEND_END_MODULE_GLOBALS(PhpExcel)
extern zend_module_entry PhpExcel_module_entry;
#define phpext_PhpExcel_ptr &PhpExcel_module_entry
#define PHP_PHPEXCEL_VERSION "1.0.0" /* Replace with version number for your extension */
#ifdef PHP_WIN32
# define PHP_PHPEXCEL_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_PHPEXCEL_API __attribute__ ((visibility("default")))
#else
# define PHP_PHPEXCEL_API
#endif
#ifdef ZTS
#include "TSRM.h"
#endif
#define PHPEXCEL_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(PhpExcel, v)
#if defined(ZTS) && defined(COMPILE_DL_PHPEXCEL)
ZEND_TSRMLS_CACHE_EXTERN()
#endif
C++
1
https://gitee.com/wed9/PhpExcel.git
git@gitee.com:wed9/PhpExcel.git
wed9
PhpExcel
PhpExcel
master

搜索帮助