$string = strlen("hello world how are you"); // 23 characters.
if ($string > 11) {
// code here to get only "hello world"
}
我想只获得“你好世界”。 我需要使用什么功能?
答案 0 :(得分:0)
您正在寻找substr()
$string = "hello world how are you";
if (strlen($string) > 11) {
echo substr($string,0,11);
}
这将导致:
hello world