This article mainly introduces the method of implementing the universal alert function in PHP, and analyzes the techniques of PHP custom alert function to implement prompt information. It is of great practical value, friends in need can refer to it
The example in this article describes how to implement the universal alert function in PHP. Share it with everyone for your reference. The details are as follows:
Function: General Tips
Parameters: prompt message, type or URL, window name or function name, delay milliseconds
Alert("","function","close2",300);
The code is as follows:
?
3 4 513 14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
function Alert($Str,$Typ="back",$TopWindow="",$Tim=100){ echo "<script>".chr(10); if(!empty($Str)){ echo "alert("Warning:\n\n{$Str}\n\n");".chr(10); } echo "function _r_r_(){"; $WinName=(!empty($TopWindow))?"top":"self"; switch (StrToLower($Typ)){ case "#": break; case "back": echo $WinName.".history.go(-1);".chr(10); break; case "reload": echo $WinName.".window.location.reload();".chr(10); break; case "close": echo "window.opener=null;window.close();".chr(10); break; case "function": echo "var _T=new function('return {$TopWindow}')();_T();".chr(10); break; //Die(); Default: if($Typ!=""){ //echo "window.{$WinName}.location.href='{$Typ}';"; echo "window.{$WinName}.location=('{$Typ}');"; } } echo "}".chr(10); //To prevent Firefox from not executing setTimeout echo "if(setTimeout("_r_r_()",".$Tim.")==2){_r_r_();}"; if($Tim==100){ echo "_r_r_();".chr(10); }else{ echo "setTimeout("_r_r_()",".$Tim.");".chr(10); } echo "</script>".chr(10); Exit(); } |