标签: php string
如果我有$word = "big words";
$word = "big words";
我怎么能只保留前6个字母,所以它变为:
$word = "big wo";
(在PHP中)
答案 0 :(得分:3)
substr,几乎所有语言都具有字符串功能。
substr
答案 1 :(得分:2)
您需要的是子串函数:
substr($word, 0, 6);