码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp tp5 常用 functions

时间:2017-02-18 19:45:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:thinkphp   style   ret   ring   cti   中文   字符串   case   request   

 

/**
 * 过滤转换入脚本
 * @param  $data
 * @param  $no_replace_key 不需要过滤转换的数据键
 * @param string $request_type  请求类型 get post
 */
function search_content_filter($data = array(), $request_type = ‘get‘, $no_replace_key = array())
{
    switch (strtolower($request_type)) {
        case ‘get‘:
            foreach ($data as $key=>$val) {
                if(in_array($key, $no_replace_key)) {
                    continue;
                }
                $_GET[$key] = trim(htmlspecialchars($val,ENT_QUOTES));
            }
            break;
        case ‘post‘:
            foreach ($data as $key=>$val) {
                if(in_array($key, $no_replace_key)) {
                    continue;
                }
                $_POST[$key] = trim(htmlspecialchars($val,ENT_QUOTES));
            }
            break;
    }

}

//Utf 8 字符中文截取方法

//截取utf8字符串
function utf8Substr($str, $from, $len)
{
    return preg_replace(‘#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,‘.$from.‘}‘.
        ‘((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,‘.$len.‘}).*#s‘,
        ‘$1‘,$str);
}

 

thinkphp tp5 常用 functions

标签:thinkphp   style   ret   ring   cti   中文   字符串   case   request   

原文地址:http://www.cnblogs.com/shaoing/p/6413839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!