资源简介
禾匠商城【小程序】v3.1.43前端+后台+使用说明.rar
代码片段和文件信息
/*
* 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_v
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3837 2019-05-29 17:50 小程序前端V3.1.43\app.js
文件 5722 2019-05-30 12:46 小程序前端V3.1.43\app.json
文件 45563 2019-05-29 17:50 小程序前端V3.1.43\app.wxss
文件 6301 2019-05-29 17:51 小程序前端V3.1.43\bargain\activity\activity.js
文件 148 2019-05-29 17:50 小程序前端V3.1.43\bargain\activity\activity.json
文件 12326 2019-05-29 17:51 小程序前端V3.1.43\bargain\activity\activity.wxm
文件 3799 2019-05-29 17:51 小程序前端V3.1.43\bargain\activity\activity.wxss
文件 1311 2019-05-29 17:51 小程序前端V3.1.43\bargain\commons\naver\naver.wxm
文件 433 2019-05-06 13:12 小程序前端V3.1.43\bargain\commons\naver\naver.wxss
文件 709 2019-05-29 17:51 小程序前端V3.1.43\bargain\commons\time.js
文件 10263 2019-05-29 17:51 小程序前端V3.1.43\bargain\goods\goods.js
文件 154 2019-05-29 17:50 小程序前端V3.1.43\bargain\goods\goods.json
文件 11094 2019-05-29 17:51 小程序前端V3.1.43\bargain\goods\goods.wxm
文件 10459 2019-05-29 17:51 小程序前端V3.1.43\bargain\goods\goods.wxss
文件 3003 2019-05-29 17:51 小程序前端V3.1.43\bargain\list\list.js
文件 183 2019-05-29 17:50 小程序前端V3.1.43\bargain\list\list.json
文件 3546 2019-05-29 17:51 小程序前端V3.1.43\bargain\list\list.wxm
文件 1140 2019-05-29 18:00 小程序前端V3.1.43\bargain\list\list.wxss
文件 3162 2019-05-29 17:51 小程序前端V3.1.43\bargain\order-list\order-list.js
文件 154 2019-05-29 17:50 小程序前端V3.1.43\bargain\order-list\order-list.json
文件 3746 2019-05-29 17:51 小程序前端V3.1.43\bargain\order-list\order-list.wxm
文件 819 2019-05-29 18:00 小程序前端V3.1.43\bargain\order-list\order-list.wxss
文件 557 2019-05-29 17:51 小程序前端V3.1.43\bargain\rule\rule.js
文件 148 2019-05-29 17:50 小程序前端V3.1.43\bargain\rule\rule.json
文件 326 2019-05-29 17:51 小程序前端V3.1.43\bargain\rule\rule.wxm
文件 67 2019-05-29 17:51 小程序前端V3.1.43\bargain\rule\rule.wxss
文件 2130 2019-05-29 17:50 小程序前端V3.1.43\components\area-picker\area-picker.js
文件 1480 2019-05-29 17:50 小程序前端V3.1.43\components\area-picker\area-picker.wxm
文件 1229 2019-05-29 17:50 小程序前端V3.1.43\components\area-picker\area-picker.wxss
文件 2129 2019-05-29 17:50 小程序前端V3.1.43\components\calendar\calendar-converter.js
............此处省略20555个文件信息
- 上一篇:图解机器学习
- 下一篇:数字图像处理第三版--冈萨雷斯--书中图片资源
相关资源
- 通过变化的电磁耦合,大型强子对撞
- Delphi XE10.3 破解文件
- Delphi XE10.2.3破解 破解
- 剖析Linux系统下基于NUMA构建的服务
- zend studio 12 破解 注册码 key 绿色版
- CCLicenseService
- WinRAR 4.0 简体中文破解版
- 单片机仿真软件proteus6.7免安装绿色版
- UltraEdit 26.x版本 激活工具
- 一种基于LM3150 Buck型开关电源设计.p
- 百度文库、豆丁、道客巴巴文件免费
- 改善分数分频锁相环合成器中的整数
- 233网校视频器2018最新绿色版
- OdooHotelManagementSystem 基于Odoo的酒店管
- SecureCRT-6.0.2安装包和SecureCRT-6.0.2注册
- 数据结构与算法课件ppt
- 方正超粗黑简体 FZCCHJW—GB1-0 字体
- FZCCHJW-GB10
- Dr. Cleaner Pro mac破解版
- kindle epub 电子书大全
- 迅雷敏感资源限制解除小工具.zip
- Eclipse编程技术与附CD-ROM光盘
- HEU_KMS_Activator_j
- pzs_44217116_06.aia
- Git汉化资源
- digital字体
- 浪潮英信服务器NP120D用户手册
- 看门狗复位的应用技巧
- Hillstone SA-2003高性能纯硬件安全网关产
- Hillstone ARP防护——StoneOS如何保
评论
共有 条评论