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


PHP uc_stripslashes函數代碼示例

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


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

示例1: hg_gbktoutf8

/**
 * GBK轉UTF8
 * $content array||string 需要轉換的內容.
 * $is_stripslashes bol 是否啟用uc_stripslashes方法
 * $old_charset string 轉之前字符集
 * $new_charset string 轉之後字符集
 * $is_enforce bol 是否強製轉換.如false則先判斷本地字符集是否與uc相等
 */
function hg_gbktoutf8($content, $is_stripslashes = false, $old_charset = 'gbk', $new_charset = 'utf-8', $is_enforce = false)
{
    if (strcasecmp(UC_CHARSET, $old_charset) == 0 || $is_enforce) {
        if ($content && !is_array($content)) {
            $content = $is_stripslashes ? uc_stripslashes($content) : $content;
            $content = iconv($old_charset, $new_charset . "//IGNORE", $content);
        } elseif (is_array($content)) {
            foreach ($content as $k => $v) {
                $content[$k] = hg_utf8togbk($v, $is_stripslashes, $old_charset, $new_charset, $is_enforce);
            }
        }
    }
    return $content;
}
開發者ID:h3len,項目名稱:Project,代碼行數:22,代碼來源:client.php

示例2: uc_api_post

function uc_api_post($module, $action, $arg = array())
{
    $s = $sep = '';
    foreach ($arg as $k => $v) {
        if (is_array($v)) {
            $s2 = $sep2 = '';
            foreach ($v as $k2 => $v2) {
                $s2 .= "{$sep2}{$k}[{$k2}]=" . urlencode(uc_stripslashes($v2));
                $sep2 = '&';
            }
            $s .= $sep . $s2;
        } else {
            $s .= "{$sep}{$k}=" . urlencode(uc_stripslashes($v));
        }
        $sep = '&';
    }
    $postdata = uc_api_requestdata($module, $action, $s);
    return uc_fopen2(UC_API . '/index.php', 500000, $postdata, '', TRUE, UC_IP, 20);
}
開發者ID:noikiy,項目名稱:MyShop,代碼行數:19,代碼來源:client.php

示例3: index

 public function index()
 {
     $get = $post = array();
     $code = @$_GET['code'];
     parse_str(uc_authcode($code, 'DECODE', UC_KEY), $get);
     if (get_magic_quotes_gpc()) {
         $get = uc_stripslashes($get);
     }
     $timestamp = time();
     if ($timestamp - $get['time'] > 3600) {
         exit('Authracation has expiried');
     }
     if (empty($get)) {
         exit('Invalid Request');
     }
     $action = $get['action'];
     include_once APP_PATH . 'uc_client/lib/xml.class.php';
     $post = xml_unserialize(file_get_contents('php://input'));
     if (in_array($get['action'], array('test', 'deleteuser', 'renameuser', 'gettag', 'synlogin', 'synlogout', 'updatepw', 'updatebadwords', 'updatehosts', 'updateapps', 'updateclient', 'updatecredit', 'getcreditsettings', 'updatecreditsettings'))) {
         exit($this->{$get}['action']($get, $post));
     } else {
         exit(API_RETURN_FAILED);
     }
 }
開發者ID:kid2682,項目名稱:SMZDM,代碼行數:24,代碼來源:indexAction.class.php


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