在PHP中,substr函数用于截取字符串的一部分。其语法如下:
substr(string $string, int $start, ?int $length = null): string
参数说明:
示例:
$str = "Hello, World!";
echo substr($str, 0, 5); // 输出 "Hello"
echo substr($str, 7); // 输出 "World!"
在上面的示例中,第一个substr函数调用截取了字符串$str的前5个字符,而第二个substr函数调用从第7个字符开始一直截取到字符串的末尾。