From 989160fde019303785f1742173d5fbab27c3ea05 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 19 Mar 2018 02:53:15 +0900 Subject: [PATCH] Update security.php --- system/security.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/system/security.php b/system/security.php index 34ac619..c36adbd 100644 --- a/system/security.php +++ b/system/security.php @@ -523,5 +523,21 @@ if(!function_exists("get_formatted_number")) { } } +if(!function_exists("get_cutted_string")) { + function get_cutted_string($str, $start, $len, $charset="utf-8") { + $out_str = ""; + + if(function_exists("iconv_substr")) { + $out_str = iconv_substr($str, $start, $len, $charset); + } elseif(iconv_substr("mb_substr")) { + $out_str = mb_substr($str, $start, $len, $charset); + } else { + $out_str = substr($str, $start, $len); + } + + return $out_str; + } +} + // start session (enable $_SESSION) session_start();