thinkphp tp5 常用 functions
Posted William Shaw技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp tp5 常用 functions相关的知识,希望对你有一定的参考价值。
/** * 过滤转换入脚本 * @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的主要内容,如果未能解决你的问题,请参考以下文章
[李景山php]每天TP5-20170124|thinkphp5-Process.php-6
[李景山php]每天TP5-20161225|thinkphp5-Console.php-2
[李景山php]每天TP5-20170111|thinkphp5-Model.php-4
[李景山php]每天TP5-20170117|thinkphp5-Url.php-2