资源简介
微信小程序拼团系统完整源码。包含后台和数据库。采用PHP YII框架。适合二次开发,研究学习!
代码片段和文件信息
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier
*
* For the full copyright and license information please view the LICENSE
* file that was distributed with this source code.
*/
#ifdef HAVE_CONFIG_H
#include “config.h“
#endif
#include “php.h“
#ifdef ZTS
#include “TSRM.h“
#endif
#include “php_ini.h“
#include “ext/standard/info.h“
#include “php_symfony_debug.h“
#include “ext/standard/php_rand.h“
#include “ext/standard/php_lcg.h“
#include “ext/spl/php_spl.h“
#include “Zend/zend_gc.h“
#include “Zend/zend_builtin_functions.h“
#include “Zend/zend_extensions.h“ /* for ZEND_EXTENSION_API_NO */
#include “ext/standard/php_array.h“
#include “Zend/zend_interfaces.h“
#include “SAPI.h“
#define IS_PHP_53 ZEND_EXTENSION_API_NO == 220090626
ZEND_DECLARE_MODULE_GLOBALS(symfony_debug)
ZEND_BEGIN_ARG_INFO_EX(symfony_zval_arginfo 0 0 2)
ZEND_ARG_INFO(0 key)
ZEND_ARG_ARRAY_INFO(0 array 0)
ZEND_ARG_INFO(0 options)
ZEND_END_ARG_INFO()
const zend_function_entry symfony_debug_functions[] = {
PHP_FE(symfony_zval_info symfony_zval_arginfo)
PHP_FE(symfony_debug_backtrace NULL)
PHP_FE_END
};
PHP_FUNCTION(symfony_debug_backtrace)
{
if (zend_parse_parameters_none() == FAILURE) {
return;
}
#if IS_PHP_53
zend_fetch_debug_backtrace(return_value 1 0 TSRMLS_CC);
#else
zend_fetch_debug_backtrace(return_value 1 0 0 TSRMLS_CC);
#endif
if (!SYMFONY_DEBUG_G(debug_bt)) {
return;
}
php_array_merge(Z_ARRVAL_P(return_value) Z_ARRVAL_P(SYMFONY_DEBUG_G(debug_bt)) 0 TSRMLS_CC);
}
PHP_FUNCTION(symfony_zval_info)
{
zval *key = NULL *arg = NULL;
zval **data = NULL;
HashTable *array = NULL;
long options = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC “zh|l“ &key &array &options) == FAILURE) {
return;
}
switch (Z_TYPE_P(key)) {
case IS_STRING:
if (zend_symtable_find(array Z_STRVAL_P(key) Z_STRLEN_P(key) + 1 (void **)&data) == FAILURE) {
return;
}
break;
case IS_LONG:
if (zend_hash_index_find(array Z_LVAL_P(key) (void **)&data)) {
return;
}
break;
}
arg = *data;
array_init(return_value);
add_assoc_string(return_value “type“ (char *)_symfony_debug_zval_type(arg) 1);
add_assoc_stringl(return_value “zval_hash“ _symfony_debug_memory_address_hash((void *)arg TSRMLS_CC) 16 0);
add_assoc_long(return_value “zval_refcount“ Z_REFCOUNT_P(arg));
add_assoc_bool(return_value “zval_isref“ (zend_bool)Z_ISREF_P(arg));
if (Z_TYPE_P(arg) == IS_object) {
char hash[33] = {0};
php_spl_object_hash(arg (char *)hash TSRMLS_CC);
add_assoc_stringl(return_value “object_class“ (char *)Z_OBJCE_P(arg)->name Z_OBJCE_P(arg)->name_length 1);
add_assoc_long(return_value “object_refcount“ EG(objects_store).object_buckets[Z_OBJ_HANDLE_P(arg)].bucket.obj.refcount);
add_assoc_string(return_value “object_hash“ hash 1);
add_assoc_long(return_value “object_handle“ Z_OBJ_HANDLE_P(arg));
} else if (Z_TYPE_P(arg) == IS_ARRAY) {
add_assoc_long(r
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 505 2017-12-25 19:19 .gitignore
文件 806 2017-09-05 10:24 codeception.yml
文件 1996 2017-10-16 01:25 composer.json
文件 129715 2017-10-16 01:25 composer.lock
文件 1142 2017-12-18 20:06 data.sql
文件 2 2017-09-05 11:11 index.html
文件 1622 2017-09-05 10:24 LICENSE.md
文件 5829 2017-09-05 10:25 README.md
文件 5141 2017-09-05 10:25 requirements.php
文件 26 2018-01-25 14:56 version.json
文件 556 2017-09-05 10:26 yii
文件 515 2017-09-05 10:26 yii.bat
目录 0 2018-02-26 22:02 assets\
文件 546 2017-09-05 10:24 assets\AppAsset.php
目录 0 2018-02-26 22:02 behaviors\
文件 897 2017-09-05 10:38 behaviors\CouponBehavior.php
文件 10947 2018-01-02 18:04 behaviors\OrderBehavior.php
文件 10508 2018-01-17 17:25 behaviors\PintuanBehavior.php
目录 0 2018-02-26 22:02 commands\
文件 715 2017-09-05 10:24 commands\HelloController.php
目录 0 2018-02-26 22:02 config\
文件 990 2017-09-05 10:24 config\console.php
文件 1545 2017-11-11 16:08 config\db.php
文件 60 2017-09-05 10:24 config\params.php
文件 1013 2017-09-05 10:24 config\test.php
文件 199 2017-09-05 10:24 config\test_db.php
文件 3399 2018-01-17 17:25 config\web.php
目录 0 2018-02-26 22:02 controllers\
文件 2132 2018-01-02 18:05 controllers\Controller.php
文件 12001 2018-01-18 10:05 controllers\PayNotifyController.php
文件 552 2017-11-03 21:15 controllers\SiteController.php
............此处省略13596个文件信息
- 上一篇:pdf分片
- 下一篇:PHP动态网站开发教程第2版_钱兆楼+刘万辉资源48368
相关资源
- 百度小程序仿新闻类.rar
- PHP语音口令红包小程序源码.zip
- 仿萤火商城商业版微信小程序
- thinkphp+微信小程序商城+前端+后台+m
- 成语小秀才微信小程序源码
- 基于ThinkPHP开发的新闻系统微信小程序
- uniapp程序源码.rar
- 微信小程序前后端php.rar
- 万能门店独立版V3.6微信小程序源码附
- thinkphp+小程序商城+前端页面+后台管理
- 微信小程序商城完整前端+ php 后台,
- ThinkPHP5企业微信小程序-前端demo+后端
- 包你说小程序源码php 前后台代码,及
- 失物认领招领小程序独立后台版源码
- 微信小程序 - 表白墙带PHP后台和源码
- 微信小程序语音silk转换pcm,wav格式
- 表白墙微信小程序带php源码无后门
- 微信小程序diy模板
- Think PHP 精仿网易严选微信小程序
- thinkphp答题小程序源码
- 万能门店全云端独立版v4.0.9微信小程
- 来客推小程序分销商城源码 v2.3
- php微信小程序多商户版
- CRMEB_DT_v3.2.1.zip
- 狮子鱼社区团购小程序 V12.8.2不带直播
- 社区团购小程序开源源码免费
- 微信商城源码 小程序+php后台 2018.
- 微信小程序开发入门与实践 高清扫描
- 会员卡 php版微信小程序会员卡创建、
- 小程序web-view调用H5页面判断环境并发
评论
共有 条评论