资源简介
人人商城V3-3.17.4小程序前端.zip
代码片段和文件信息
/*
+----------------------------------------------------------------------+
| Twig Extension |
+----------------------------------------------------------------------+
| Copyright (c) 2011 Derick Rethans |
+----------------------------------------------------------------------+
| Redistribution and use in source and binary forms with or without |
| modification are permitted provided that the conditions mentioned |
| in the accompanying LICENSE file are met (BSD-3-Clause). |
+----------------------------------------------------------------------+
| Author: Derick Rethans |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include “config.h“
#endif
#include “php.h“
#include “php_twig.h“
#include “ext/standard/php_var.h“
#include “ext/standard/php_string.h“
#include “ext/standard/php_smart_str.h“
#include “ext/spl/spl_exceptions.h“
#include “Zend/zend_object_handlers.h“
#include “Zend/zend_interfaces.h“
#include “Zend/zend_exceptions.h“
#ifndef Z_ADDREF_P
#define Z_ADDREF_P(pz) (pz)->refcount++
#endif
#ifndef E_USER_DEPRECATED
#define E_USER_DEPRECATED (1<<14L)
#endif
#define FREE_DTOR(z) \
zval_dtor(z); \
efree(z);
#if PHP_VERSION_ID >= 50300
#define APPLY_TSRMLS_DC TSRMLS_DC
#define APPLY_TSRMLS_CC TSRMLS_CC
#define APPLY_TSRMLS_FETCH()
#else
#define APPLY_TSRMLS_DC
#define APPLY_TSRMLS_CC
#define APPLY_TSRMLS_FETCH() TSRMLS_FETCH()
#endif
ZEND_BEGIN_ARG_INFO_EX(twig_template_get_attribute_args ZEND_SEND_BY_VAL ZEND_RETURN_VALUE 6)
ZEND_ARG_INFO(0 template)
ZEND_ARG_INFO(0 object)
ZEND_ARG_INFO(0 item)
ZEND_ARG_INFO(0 arguments)
ZEND_ARG_INFO(0 type)
ZEND_ARG_INFO(0 isDefinedTest)
ZEND_END_ARG_INFO()
#ifndef PHP_FE_END
#define PHP_FE_END { NULL NULL NULL}
#endif
static const zend_function_entry twig_functions[] = {
PHP_FE(twig_template_get_attributes twig_template_get_attribute_args)
PHP_FE_END
};
PHP_RSHUTDOWN_FUNCTION(twig)
{
#if ZEND_DEBUG
CG(unclean_shutdown) = 0; /* get rid of PHPUnit‘s exit() and report memleaks */
#endif
return SUCCESS;
}
zend_module_entry twig_module_entry = {
STANDARD_MODULE_HEADER
“twig“
twig_functions
NULL
NULL
NULL
PHP_RSHUTDOWN(twig)
NULL
PHP_TWIG_VERSION
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_TWIG
ZEND_GET_MODULE(twig)
#endif
static int TWIG_ARRAY_KEY_EXISTS(zval *array zval *key)
{
if (Z_TYPE_P(array) != IS_ARRAY) {
return 0;
}
switch (Z_TYPE_P(key)) {
case IS_NULL:
return zend_hash_exists(Z_ARRVAL_P(array) ““ 1);
case IS_BOOL:
case IS_DOUBLE:
convert_to_long(key);
case IS_LONG:
return zend_hash_index_exists(Z_ARRVAL_P(array) Z_LVAL_P(key));
default:
convert_to_string(key);
return zend_symtable_exists(Z_ARRVAL_P(array) Z_STRVAL_P(key) Z_STRLEN_P(key) + 1);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-11-12 14:07 后端\
目录 0 2019-11-06 23:09 后端\ewei_shopv2\
文件 21185 2019-11-01 20:33 后端\ewei_shopv2\b.php
目录 0 2019-11-01 21:05 后端\ewei_shopv2\cert\
文件 32 2019-11-01 20:33 后端\ewei_shopv2\cert\readme.txt
目录 0 2019-11-01 21:05 后端\ewei_shopv2\core\
目录 0 2019-11-01 21:05 后端\ewei_shopv2\core\com\
文件 0 2019-11-01 20:33 后端\ewei_shopv2\core\com\cache.php
文件 77901 2019-11-01 20:33 后端\ewei_shopv2\core\com\coupon.php
文件 116 2019-11-01 20:33 后端\ewei_shopv2\core\com\h5app.php
文件 78405 2019-11-01 20:33 后端\ewei_shopv2\core\com\perm.php
文件 42796 2019-11-01 20:33 后端\ewei_shopv2\core\com\printer.php
文件 6818 2019-11-01 20:33 后端\ewei_shopv2\core\com\qiniu.php
文件 6815 2019-11-01 20:33 后端\ewei_shopv2\core\com\sale.php
文件 6076 2019-11-01 20:33 后端\ewei_shopv2\core\com\sendticket.php
文件 17368 2019-11-01 20:33 后端\ewei_shopv2\core\com\sms.php
文件 367 2019-11-01 20:33 后端\ewei_shopv2\core\com\tmessage.php
文件 21575 2019-11-01 20:33 后端\ewei_shopv2\core\com\verify.php
文件 13716 2019-11-01 20:33 后端\ewei_shopv2\core\com\virtual.php
文件 174 2019-11-01 20:33 后端\ewei_shopv2\core\com\wap.php
文件 62179 2019-11-01 20:33 后端\ewei_shopv2\core\com\wxcard.php
目录 0 2019-11-01 21:16 后端\ewei_shopv2\core\inc\
文件 83 2019-11-01 20:33 后端\ewei_shopv2\core\inc\com_model.php
文件 900 2019-11-01 20:33 后端\ewei_shopv2\core\inc\com_processor.php
文件 414 2019-11-01 20:33 后端\ewei_shopv2\core\inc\data_model.php
文件 117304 2019-11-01 21:16 后端\ewei_shopv2\core\inc\functions.php
文件 21761 2019-11-01 20:33 后端\ewei_shopv2\core\inc\page.php
文件 28455 2019-11-01 20:33 后端\ewei_shopv2\core\inc\page_mobile.php
文件 228 2019-11-01 20:33 后端\ewei_shopv2\core\inc\page_mobile_login.php
文件 5841 2019-11-01 20:33 后端\ewei_shopv2\core\inc\page_mobile_plugin.php
文件 240 2019-11-01 20:33 后端\ewei_shopv2\core\inc\page_mobile_plugin_login.php
............此处省略11098个文件信息
相关资源
- 通过变化的电磁耦合,大型强子对撞
- 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如何保
评论
共有 条评论