Shorten a text string in PHP

前端 未结 9 2425
暗喜
暗喜 2020-12-20 02:32

Is there a way to trim a text string in PHP so it has a certain number of characters? For instance, if I had the string:

$string = \"this is a string\";

9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-20 03:24

    substr let's you take a portion of string consisting of exactly as much characters as you need.

提交回复
热议问题