yii2.0 StringHelper
yii2 2017-08-14 14:46:19

use yii\helpers\StringHelper;

 

PHP Code复制内容到剪贴板
  1. public function actionString(){  
  2.     $str='我是中国人啊啊啊啊啊';  
  3.     $eng='abcdefg';  
  4.     /* 
  5.      *  1.truncate($str,3,$suffix); 
  6.      *      根据长度截取字符串,省略的文字, 如果$suffix为空,那么默认后缀是... 
  7.      *      StringHelper::truncate($str,3,'-----'); 
  8.      */  
  9.   
  10.     /* 
  11.      *  2. startsWith($string, $with, $caseSensitive = true) 
  12.      *      判断字符串是否以第二个参数为开始,返回布尔值 
  13.      *      StringHelper::startsWith($str,'z'); 
  14.      */  
  15.   
  16.     /* 
  17.      *  3.endsWith($string, $with, $caseSensitive = true) 
  18.      *      判断字符串是否以第二个参数为结尾,返回布尔值 
  19.      */  
  20.     echo StringHelper::endsWith($str,'啊');  
  21. }  

 

本文来自于:http://www.yoyo88.cn/study/yii2/131.html

Powered by yoyo苏ICP备15045725号