1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <?php
| function smarty_function_tongji($paramer,&$smarty){
| global $config,$views;
| $sy_tongji = '';
|
| if($config['sy_webtongji']){
|
| $patterns=array("Sleep"," an d "," Or ","xOr","Select","Update","Count","Chr","Truncate","Union","Delete","Insert","- -","(",")","OOOOOOOO","Ox","×","Ob", "{","}");
|
| $replacements=array("sleep"," and "," or ","xor","select","update","count","chr","truncate","union","delete","insert","--","(",")","00000000","0x","*","0b","{","}");
|
|
|
| $sy_tongji = str_replace($patterns,$replacements,$config['sy_webtongji']);
| }
|
| return $sy_tongji;
|
| }
| ?>
|
|