分享一個很是實用,本人一直在用的利用php彈出警告的函數,整理到本身的代碼庫中去在遇到錯誤的地方可用到此函數,擴展性強,完整代碼以下(更多PHP教程請訪問代碼家園):javascript
//********彈出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(); }
轉載請註明:代碼家園 » 很是實用的php彈出錯誤警告函數php