• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP uc_stripslashes函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP uc_unserialize函数代码示例发布时间:2022-05-23
下一篇:
PHP uc_pm_view函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap