⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 template.generate_debug_output.php

📁 、支持无限级的分类与子分类
💻 PHP
字号:
<?php
/**
 * Template Lite template_generate_debug_output template internal module
 *
 * Type:	 template
 * Name:	 template_generate_debug_output
 */

function template_generate_debug_output(&$object)
{
    $assigned_vars = $object->_vars;
    ksort($assigned_vars);
    if (@is_array($object->_config[0]))
	{
        $config_vars = $object->_config[0];
        ksort($config_vars);
        $object->assign("_debug_config_keys", array_keys($config_vars));
        $object->assign("_debug_config_vals", array_values($config_vars));
    }   

    $included_templates = $object->_templatelite_debug_info;
	$object->left_delimiter  = "{";
	$object->right_delimiter = "}";

    $object->assign("_debug_keys", array_keys($assigned_vars));
    $object->assign("_debug_vals", array_values($assigned_vars));
    $object->assign("_debug_tpls", $included_templates);
    $object->assign("_templatelite_debug_output", "");

	$object->_templatelite_debug_loop = true;
	$object->_templatelite_debug_dir = $object->template_dir;
	$object->template_dir = TEMPLATE_LITE_DIR . "internal/";
	$debug_output = $object->fetch("debug.tpl");
	$object->template_dir = $object->_templatelite_debug_dir;
	$object->_templatelite_debug_loop = false;
	return $debug_output;
}

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -