资源简介
Next Cloud官方最新版源代码安装包V15.0,搬运下载
代码片段和文件信息
/*
* 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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-10 10:26 nextcloud\
目录 0 2018-12-10 10:21 nextcloud\ocs\
文件 841 2018-12-10 10:21 nextcloud\ocs\v2.php
文件 3970 2018-12-10 10:21 nextcloud\ocs\v1.php
文件 2077 2018-12-10 10:21 nextcloud\ocs\providers.php
文件 3650 2018-12-10 10:21 nextcloud\console.php
目录 0 2018-12-10 10:21 nextcloud\ocs-provider\
文件 1018 2018-12-10 10:21 nextcloud\ocs-provider\index.php
文件 363 2018-12-10 10:25 nextcloud\version.php
目录 0 2018-12-10 10:26 nextcloud\core\
目录 0 2018-12-10 10:21 nextcloud\core\js\
目录 0 2018-12-10 10:21 nextcloud\core\js\share\
文件 1524 2018-12-10 10:21 nextcloud\core\js\share\sharedialogshareelistview.handlebars
文件 1496 2018-12-10 10:21 nextcloud\core\js\share\sharedialogli
文件 181 2018-12-10 10:21 nextcloud\core\js\share\sharedialogresharerinfoview.handlebars
文件 5756 2018-12-10 10:21 nextcloud\core\js\share\sharedialogshareelistview_popover_menu.handlebars
文件 5623 2018-12-10 10:21 nextcloud\core\js\share\sharedialogli
文件 629 2018-12-10 10:21 nextcloud\core\js\share\sharedialogli
文件 560 2018-12-10 10:21 nextcloud\core\js\share\sharedialogview.handlebars
文件 4853 2018-12-10 10:21 nextcloud\core\js\placeholder.js
文件 1479 2018-12-10 10:21 nextcloud\core\js\select2-toggleselect.js
文件 24249 2018-12-10 10:21 nextcloud\core\js\shareitemmodel.js
文件 249 2018-12-10 10:21 nextcloud\core\js\publicshareauth.js
文件 5935 2018-12-10 10:21 nextcloud\core\js\jquery.ocdialog.js
目录 0 2018-12-10 10:21 nextcloud\core\js\public\
文件 3116 2018-12-10 10:21 nextcloud\core\js\public\appconfig.js
文件 1741 2018-12-10 10:21 nextcloud\core\js\public\comments.js
文件 3701 2018-12-10 10:21 nextcloud\core\js\public\whatsnew.js
文件 1666 2018-12-10 10:21 nextcloud\core\js\public\publicpage.js
文件 9190 2018-12-10 10:21 nextcloud\core\js\l10n.js
文件 11028 2018-12-10 10:21 nextcloud\core\js\contactsmenu.js
............此处省略14999个文件信息
相关资源
- 戴森-施温格方程在有限球体积中的手
- 由国家自然科学基金委员会U1232105和中
- librdkafka win7 64位 vs2015编译Release版本
- 一种基于LM3150 Buck型开关电源设计.p
- 启天M7150 BIOS
- 启天M7150 L-IG41M主板 BIOS
- Quartus II 15.0中仿真DDR2 IP核
- 乒乓球抽签编排软件-2015-8-22
- 周立功PCI CAN卡LINUX驱动ubuntu16.04内核
- DevExpress 15.1.6 源码 全 百度云
- HP ProLiant ML115服务器产品说明书
- Einstein-Maxwell-Dilaton-Axion模型中的剪切
- Cisco ONS 15600 多服务交换平台
- Winhex 15 官方中文语言包
- 注册表优化工具(Systweak RegClean Pro)
- 基于IAP15F2K61S2单片机的多路温度巡检
- 2015年美国总统绿色化学挑战奖评述
- VIsual Studio2013,2015官方完全卸载工具
- Cisco PIX 515E防火墙
- Cisco Secure PIX 515防火墙产品资料
- IEEE 802.15.4的CC2530无线数据收发设计
- IEEE 802.15.4的CC2530无线数据收发设计
- 信息通信建设工程预算定额 2017 415定
- Xcode 12.3(16F156)安装包.zip
- IAP15f2k61s2
- eetop.cn_eetop.cn_hfss15_win32crack
- 钰硕ar8151网卡驱动 win7 64位 win7/10/xp
- AnkhSvn-2.6.12735 支持VS2010-VS2015 官方原版
- 以Sun Fire 15K为核心的网络计算解决方
- parallel_studio 2015最新license你懂的
评论
共有 条评论