本文整理汇总了PHP中security::addSlashes方法的典型用法代码示例。如果您正苦于以下问题:PHP security::addSlashes方法的具体用法?PHP security::addSlashes怎么用?PHP security::addSlashes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类security
的用法示例。
在下文中一共展示了security::addSlashes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$oops->ouch('APP_PHP_TOO_OLD', true);
}
// Anit GLOBALS var
if (isset($_REQUEST['GLOBALS']) || isset($_FILES['GLOBALS'])) {
$oops->ouch('APP_BAD_ATTEMPT', true);
}
// Anit long or huge request
if (isset($_SERVER['PATH_INFO'][512])) {
$oops->ouch('APP_DATABLOCK_TOO_LARGE', true);
}
// Let's Add Slashes to REQUEST variable first, for safe.
$_MYGET = $_MYPOST = array();
// Init Security Unit here
$sec = new security($oops);
// First things will do when $sec has been loaded
if (!empty($_GET) && ($_MYGET = $sec->addSlashes($_GET))) {
$_runtime['GetFilled'] = true;
}
if (!empty($_POST) && ($_MYPOST = $sec->addSlashes($_POST))) {
$_runtime['PostFilled'] = true;
}
unset($_GET, $_POST);
// Unset it so no one can use
// Init Cache module
$cac = new filecache($cfg['cache'], $oops, $sec);
// Init Database Unit
$db = new db($cfg['db'], $oops, $sec, $cac);
/** START OF SITE SETTING **/
$site = array();
if (!($site = $cac->read('SITE', 'SITECFG', 86400))) {
$temp_site = array();