在PHP中,有多種方法可以對字符串進(jìn)行截取。以下是其中一些常用的方法:
$str = "Hello World";
$subStr = substr($str, 0, 5); // 輸出 "Hello"
$str = "你好,世界";
$subStr = mb_substr($str, 0, 2); // 輸出 "你好"
$str = "Hello,World";
$arr = explode(",", $str);
$subStr = $arr[0]; // 輸出 "Hello"
$str = "Hello,World";
preg_match("/Hello/", $str, $matches);
$subStr = $matches[0]; // 輸出 "Hello"
這些只是一些常用的方法,還有其他方法可以使用。選擇哪種方法取決于你的需求和個人偏好。