side.php

来自「想必大家都在找个个日志的代码吧··呵呵·我今天就吐血奉献给大家吧」· PHP 代码 · 共 35 行

PHP
35
字号
<?php if(!defined('EMLOG_ROOT')) {exit('error!');} ?><div id="page"><div class="contentA"><?php require_once (getViews('function'));$widgets = !empty($options_cache['widgets1']) ? unserialize($options_cache['widgets1']) : array();$i = 0;foreach ($widgets as $val){	$widget_title = @unserialize($options_cache['widget_title']);	$custom_title = @unserialize($options_cache['custom_title1']);	$custom_content = @unserialize($options_cache['custom_content1']);	$callback = 'widget_'.$val;	if($val == 'custom_text')	{		if(function_exists($callback))		{			call_user_func($callback, $custom_title[$i], $custom_content[$i], $i);		}		$i++;	}else{		if(function_exists($callback))		{			preg_match("/^.*\s\((.*)\)/", $widget_title[$val], $matchs);			$wgTitle = isset($matchs[1]) ? $matchs[1] : $widget_title[$val];			call_user_func($callback, $wgTitle);		}	}}?><div class="lister"><a href="./rss.php"><img src="<?php echo $em_tpldir; ?>images/rss.gif" alt="璁㈤槄Rss"/></a></div></div><div id="contentB">

⌨️ 快捷键说明

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