php弹出错误警告函数

发布时间:2020-05-31编辑:脚本学堂
php弹出警告的函数,在遇到错误的地方可用到此函数,扩展性强,分享给大家,做个参考吧。

一直在用的利用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();
}