Yii2-助手(StringHelper)
截斷字串
echo StringHelper::truncate('中文截斷字元',4); //'中文截斷...'
字串轉陣列
StringHelper::explode('this is string',' '); //[ 0 => 'this' 1 => 'is' 2 => 'string' ]
判斷是否指定字串開始
StringHelper::startsWith('指定字串','字元'); //true
判斷是否指定字串結束
StringHelper::endsWith('指定字串','字元'); //true