smarty+AJAX实例

源代码在线查看: function.debug.php

软件大小: 106 K
上传用户: xiao11tian
关键词: smarty AJAX
下载地址: 免注册下载 普通下载 VIP

相关代码

								/**				 * Smarty plugin				 * @package Smarty				 * @subpackage plugins				 */												/**				 * Smarty {debug} function plugin				 *				 * Type:     function				 * Name:     debug				 * Date:     July 1, 2002				 * Purpose:  popup debug window				 * @link http://smarty.php.net/manual/en/language.function.debug.php {debug}				 *       (Smarty online manual)				 * @author   Monte Ohrt 				 * @version  1.0				 * @param array				 * @param Smarty				 * @return string output from {@link Smarty::_generate_debug_output()}				 */				function smarty_function_debug($params, &$smarty)				{				    if (isset($params['output'])) {				        $smarty->assign('_smarty_debug_output', $params['output']);				    }				    require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');				    return smarty_core_display_debug_console(null, $smarty);				}								/* vim: set expandtab: */								?>							

相关资源