⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strip_wonderful_slashes.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php/*  this strips all "\" from $_REQUEST and  disables the runtime garbaging as well  just include() it before ewiki.php  and everythink should work fine  for Apache+mod_php you should however rather use the  [.htaccess] PHP reconfiguration trick:    php_flag magic_quotes_gpc off    php_flag magic_quotes_runtime off*/ #-- this is very evil too set_magic_quotes_runtime(0); #-- Moodle always addslashes to everything so #-- we strip them back again here to allow #-- the wiki module itself to add them before #-- insert. Strange triple add-strip-add but #-- this was the best way to solve problems #-- without changing how the rest of the  #-- module works.    $superglobals = array(       "_REQUEST",       "_GET",       "_POST",       "_COOKIE",       "_ENV",       "_SERVER"    );    foreach ($superglobals as $AREA) {       foreach ($GLOBALS[$AREA] as $name => $value) {          if (!is_array($value)) {             $GLOBALS[$AREA][$name] = stripslashes($value);          }       }    }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -