9 Star 17 Fork 13

上帝禁区/wk_framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wk_model.c 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
上帝禁区 提交于 2014-04-02 17:09 . 初稿
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2013 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$ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "php_wk_framework.h"
#include "wk_model.h"
zend_class_entry *wk_model_ce;
static int le_wk_model;
ZEND_BEGIN_ARG_INFO_EX(void_arginfo, 0, 0, 0)
ZEND_END_ARG_INFO()
static zend_function_entry wk_load_method[] = {
{NULL, NULL, NULL}
};
EXT_STARTUP_FUNCTION(WK_Model){
zend_class_entry wk_model;
INIT_CLASS_ENTRY(wk_model, "WK_Model", wk_load_method);
wk_model_ce = zend_register_internal_class(&wk_model TSRMLS_CC);
return SUCCESS;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/365690485/wk_framework.git
git@gitee.com:365690485/wk_framework.git
365690485
wk_framework
wk_framework
master

搜索帮助