yii2.0 StringHelper
use yii\helpers\StringHelper;
PHP Code复制内容到剪贴板
- public function actionString(){
- $str='我是中国人啊啊啊啊啊';
- $eng='abcdefg';
- /*
- * 1.truncate($str,3,$suffix);
- * 根据长度截取字符串,省略的文字, 如果$suffix为空,那么默认后缀是...
- * StringHelper::truncate($str,3,'-----');
- */
- /*
- * 2. startsWith($string, $with, $caseSensitive = true)
- * 判断字符串是否以第二个参数为开始,返回布尔值
- * StringHelper::startsWith($str,'z');
- */
- /*
- * 3.endsWith($string, $with, $caseSensitive = true)
- * 判断字符串是否以第二个参数为结尾,返回布尔值
- */
- echo StringHelper::endsWith($str,'啊');
- }
下一篇 yii2 获取用户真实IP地址