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

📄 core.display_debug_console.php

📁 本网上购物系统就是为了建立与用户交流的平台,为了满足客户在线购物价格低廉物美的渴望,并基于互联网、以交易双方为主体、以银行电子支付和结算为手段、以客户数据为依托的全新的商务模式经营模式来开发的。它采用
💻 PHP
字号:
<?php/** * Smarty plugin * @package Smarty * @subpackage plugins *//** * Smarty debug_console function plugin * * Type:     core<br> * Name:     display_debug_console<br> * Purpose:  display the javascript debug console window * @param array Format: null * @param Smarty */function smarty_core_display_debug_console($params, &$smarty){    // we must force compile the debug template in case the environment    // changed between separate applications.    if(empty($smarty->debug_tpl)) {        // set path to debug template from SMARTY_DIR        $smarty->debug_tpl = SMARTY_DIR . 'debug.tpl';        $smarty->debug_tpl = 'file:' . SMARTY_DIR . 'debug.tpl';    }    $_ldelim_orig = '{';    $_rdelim_orig = '}';    $smarty->left_delimiter = '{';    $smarty->right_delimiter = '}';    $_compile_id_orig = $smarty->_compile_id;    $smarty->_compile_id = null;    $_compile_path = $smarty->_get_compile_path($smarty->debug_tpl);    if ($smarty->_compile_resource($smarty->debug_tpl, $_compile_path))    {        ob_start();        $smarty->_include($_compile_path);        $_results = ob_get_contents();        ob_end_clean();    } else {        $_results = '';    }    $smarty->_compile_id = $_compile_id_orig;    $smarty->left_delimiter = $_ldelim_orig;    $smarty->right_delimiter = $_rdelim_orig;    return $_results;}/* vim: set expandtab: */?>

⌨️ 快捷键说明

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