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.

10 lines
236 B

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