资源简介
花了300块买的微信多商户小程序(yii框架)开发,功能强大(分销,距离显示,商家入驻,线下核销,各种团购优惠券红包,物流等功能比较全面),本人用这套系统已经上线多个小程序(也有利于二开),无bug。亲测绝对可用。带前端和后台.
代码片段和文件信息
/*
* 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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 37 2017-08-04 12:58 后端\.bowerrc
文件 1191 2018-08-21 12:39 后端\.env.example
文件 110 2018-08-21 12:39 后端\.gitignore
文件 546 2017-08-04 12:58 后端\assets\AppAsset.php
文件 3527 2018-10-31 18:12 后端\behaviors\BargainBehavior.php
文件 1013 2018-08-21 12:43 后端\behaviors\ba
文件 1729 2018-11-01 17:53 后端\behaviors\CouponBehavior.php
文件 1003 2018-08-21 12:31 后端\behaviors\DoNotDoIt.php
文件 15 2018-08-21 12:36 后端\behaviors\index.html
文件 8790 2018-11-12 18:56 后端\behaviors\LotteryBehavior.php
文件 30225 2018-11-05 18:35 后端\behaviors\OrderBehavior.php
文件 14764 2018-08-30 18:26 后端\behaviors\PintuanBehavior.php
文件 1420 2018-09-10 18:53 后端\behaviors\PluginBehavior.php
文件 8133 2018-11-14 18:41 后端\behaviors\StepBehavior.php
文件 806 2017-08-04 12:58 后端\codeception.yml
文件 715 2017-08-04 12:58 后端\commands\HelloController.php
文件 873 2018-08-21 12:37 后端\commands\HjController.php
文件 2021 2018-08-21 12:40 后端\composer.json
文件 75282 2018-10-08 20:39 后端\composer.lock
文件 482 2018-08-21 12:37 后端\config\cache.php
文件 1044 2018-08-21 12:36 后端\config\console.php
文件 236 2018-08-21 12:37 后端\config\db-stand-alone.php
文件 843 2018-11-13 20:45 后端\config\db-we7.php
文件 1151 2018-08-21 12:38 后端\config\db.php
文件 15 2018-08-21 12:36 后端\config\index.html
文件 289 2018-11-23 00:05 后端\config\ind_db.php
文件 9703 2018-08-28 19:12 后端\config\openssl.cnf
文件 23 2018-08-21 12:36 后端\config\params.php
文件 1013 2017-08-04 12:58 后端\config\test.php
文件 199 2017-08-04 12:58 后端\config\test_db.php
............此处省略20573个文件信息
- 上一篇:php伊人集电商平台源码
- 下一篇:PHP动态网站开发
相关资源
- PHP动态网站开发
- php伊人集电商平台源码
- php presto 操作 hive 类
- 一元夺宝.zip
- ThinkPhp5.0电商源码前端,后端
- CRMEB_DT_v3.2.1.zip
- PHP与MySQL程序设计第四版含源码
- 史上最全传智播客PHP就业班视频课,
- rips0.55汉化版
- PHP和MySQL Web开发(原书第4和第5版含代
- 毕业答辩-php酒店预订管理系统-毕业设
- 计算机图形学 第二版 Peter Shirley 带书
- 微信大屏幕上墙程序源码
- 飞扬神途-PHP网站源码.rar
- 2018婚礼、年会现场活动大屏幕微信上
- DSKms系统Thinkphp框架开发内容付费/知识
- Thinkphp内核共享充电宝系统源码2.0版本
- 思途cms旅游系统商业版+完美破除授权
- 贷超定制版.rar
- 高级版现场活动大屏幕系统PHP.rar
- ThinkPHP借贷超市V1.5三级分销金融超市
- 织梦系统做的在线音乐网源码 php+my
- 细说PHP(高清PDF中文版)
- php项目开发案例整合
- 宽屏响应式模板 英文外贸网站源码
- 外卖人最新可以用源码
- PHP万能表单系统可用于招生报名,招
- PHP旅游网站.zip
- PHP典型模块与项目实战大全-明日科技
- 《细说PHP》
评论
共有 条评论