php websheell 管理工具,PHP 操作技巧

1,格式化显示DUMP信息:

自己动手DUMP一把,模仿thinkPHP的DUMP

// format var_dump

function p($var, $echo=true,$label=null, $strict=true)

{

echo "
";

$label = ($label===null) ? '' : rtrim($label).' ';

if(!$strict) {

if (ini_get('html_errors')) {

$output = print_r($var, true);

$output = "

".$label.htmlspecialchars($output,ENT_QUOTES)."
";

} else

{

$output = $label . " : " . print_r($var, true);

}

}else {

ob_start();

var_dump($var);

$output = ob_get_clean();

if(!extension_loaded('xdebug')) {

$output = preg_replace("/\]\=\>\n(\s+)/m", "] => ", $output);

$output = '

'. $label. htmlspecialchars($output, ENT_QUOTES). '
';

}

}

if ($echo) {

echo($output);

return null;

}else

return $output;

}

2,拿走thinkPHP的笑脸,到smarty

html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

跳转提示

*{ padding: 0; margin: 0; }

body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }

.system-message{ padding: 24px 48px; }

.system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }

.system-message .jump{ padding-top: 10px}

.system-message .jump a{ color: #333;}

.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px }

.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}

{if $singer eq 'success'}

:)

{$message}

{else}

:(

{$error}

{/if}

页面自动 跳转 等待时间: 2

(function(){

var wait = document.getElementById('wait'),href = document.getElementById('href').href;

var interval = setInterval(function(){

var time = --wait.innerHTML;

if(time <= 0) {

location.href = href;

clearInterval(interval);

};

}, 1000);

})();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值