當前位置: 首頁>>代碼示例>>PHP>>正文


PHP removeMagicQuotes函數代碼示例

本文整理匯總了PHP中removeMagicQuotes函數的典型用法代碼示例。如果您正苦於以下問題:PHP removeMagicQuotes函數的具體用法?PHP removeMagicQuotes怎麽用?PHP removeMagicQuotes使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了removeMagicQuotes函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: cookie

function cookie($key)
{
    if (NJB_REMOVE_MAGIC_QUOTES == false) {
        return @$_COOKIE[$key];
    } else {
        return removeMagicQuotes(@$_COOKIE[$key]);
    }
}
開發者ID:jdeblese,項目名稱:ompd-mod,代碼行數:8,代碼來源:globalize.inc.php

示例2: removeMagicQuotes

/**
 * Remove magic quotes recursivly
 *
 * @author Andreas Gohr <andi@splitbrain.org>
 * @param array $array
 */
function removeMagicQuotes(&$array)
{
    foreach (array_keys($array) as $key) {
        if (is_array($array[$key])) {
            removeMagicQuotes($array[$key]);
        } else {
            $array[$key] = stripslashes($array[$key]);
        }
    }
}
開發者ID:joksnet,項目名稱:php-old,代碼行數:16,代碼來源:init.php

示例3: removeMagicQuotes

function removeMagicQuotes(&$array)
{
    if (!get_magic_quotes_gpc()) {
        return;
    }
    foreach ($array as $key => $val) {
        if (is_array($val)) {
            removeMagicQuotes($array[$key], $trim);
        } else {
            $array[$key] = stripslashes($val);
        }
    }
}
開發者ID:NeilCrosby,項目名稱:Turtle,代碼行數:13,代碼來源:toolbox.php

示例4: removeMagicQuotes

function removeMagicQuotes(&$postArray, $trim = false)
{
    if (!get_magic_quotes_gpc()) {
        return;
    }
    foreach ($postArray as $key => $val) {
        if (is_array($val)) {
            removeMagicQuotes($postArray[$key], $trim);
        } else {
            if ($trim == true) {
                $val = trim($val);
            }
            $postArray[$key] = stripslashes($val);
        }
    }
}
開發者ID:NeilCrosby,項目名稱:isneilannoyedby,代碼行數:16,代碼來源:init.php

示例5: ucwords

    $controller = ucwords($controller);
    $model = rtrim($controller, 's');
    $controller .= 'Controller';
    $dispatch = new $controller($model, $controllerName, $action);
    if ((int) method_exists($controller, $action)) {
        call_user_func_array(array($dispatch, $action), $queryString);
    } else {
        /* Error Generation Code Here */
    }
}
/** Autoload any classes that are required **/
function __autoload($className)
{
    if (file_exists(ROOT . DS . 'library' . DS . strtolower($className) . '.class.php')) {
        require_once ROOT . DS . 'library' . DS . strtolower($className) . '.class.php';
    } else {
        if (file_exists(ROOT . DS . 'application' . DS . 'controllers' . DS . strtolower($className) . '.php')) {
            require_once ROOT . DS . 'application' . DS . 'controllers' . DS . strtolower($className) . '.php';
        } else {
            if (file_exists(ROOT . DS . 'application' . DS . 'models' . DS . strtolower($className) . '.php')) {
                require_once ROOT . DS . 'application' . DS . 'models' . DS . strtolower($className) . '.php';
            } else {
                /* Error Generation Code Here */
            }
        }
    }
}
setReporting();
removeMagicQuotes();
unregisterGlobals();
callHook();
開發者ID:469306621,項目名稱:Languages,代碼行數:31,代碼來源:shared.php

示例6: removeMagicQuotes

<?php

require_once 'toolbox.php';
removeMagicQuotes($_GET);
$turtle = new Turtle($_GET['commands'], 350, 350);
$maxFilenameLength = 20;
$filename = str_replace(array(' ', ':', '"', '?'), array('-', 'c', 'q', 'p'), $_GET['commands']);
if (strlen($filename) > $maxFilenameLength) {
    $filenameMd5 = md5($filename);
    $filename = substr($filename, 0, $maxFilenameLength) . '_' . $filenameMd5;
}
header("Content-Disposition: Attachment;filename={$filename}.png");
header('Content-Type: image/png');
echo $turtle->getImage();
開發者ID:NeilCrosby,項目名稱:Turtle,代碼行數:14,代碼來源:image.php


注:本文中的removeMagicQuotes函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。