文 - 篇  访客 -

PHP字符串截取


  分类:PHP  / 
更新:2023-07-25 11:52:46  /  创建:2023-08-04 16:06:56
不要删除

date created: 2022-07-05 11:30

2.正则匹配字段

截取中文

截取字符串


/*

substr加强版,可截取中文字符,

*/


function subistr($str,$start,$end){

    $reslut = '';

    for($i=$start ; $i<=$end ; $i++){

        if(preg_match('/[\x7f-\xff]/',$str[$i]) ){

            $ reslut .=  $str[$i].$str[$i+1].$str[$i+2];

            $ i =  $i+2;

            $ end =  $end+2;

        }else{

            $ reslut .=  $str[$i];

        }

    }

    return $reslut?$reslut:false;

}

$ch = '0as这ss是带中文的测dd试bnb';

var_dump(subistr($ch,0,7));

//string '0as这ss是带' (length=14)

不要删除

是日已过,命亦随减,如少水魚,斯有何乐?