You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
236 B

<?php
//截取字符串agcdef中的cde
$str='agcdef';
$ret=substr($str,2,3);
echo $ret.'<br>';
//截取中文字符
$str='一二三四五六七八九十';
$ret=mb_substr($str, 2, 4);
echo $ret.'<br>';
?>