首页

源码搜藏网

首页 > 开发教程 > IT博文 > PHP技术 >

非常实用的php弹出错误警告函数

创建时间:2014-05-08 08:40  

php弹出错误警告函数
//********弹出alert框并跳转到指定页面******//
function alert($message,$url='',$isAlert=true,$title='提示'){
	echo '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>',$title,'</title></head><body>';
	echo '<script type="text/javascript">';
	echo $isAlert'alert("'.$message.'");':'';
	echo $url=='''history.back();':'location.href="'.$url.'";';
	echo '</script>';
	echo '</body></html>';
	exit();
}
上一篇:Redis负载均衡封装(PHP)
下一篇:批量加密php文件的破解篇~

相关内容

热门推荐