在PHP中,可以使用字符串函数和数组函数来获取字符串的一部分。
strstr()
或strpos()
来获取div之前的字符串部分。strstr()
函数:$str = "This is a <div>sample</div> string";
$beforeDiv = strstr($str, '<div>', true);
echo $beforeDiv;
输出:
This is a
strpos()
函数:$str = "This is a <div>sample</div> string";
$divPosition = strpos($str, '<div>');
$beforeDiv = substr($str, 0, $divPosition);
echo $beforeDiv;
输出:
This is a
strstr()
或strpos()
来获取逗号之后的字符串部分。strstr()
函数:$str = "This is a sample string, with a comma";
$afterComma = strstr($str, ',');
echo $afterComma;
输出:
, with a comma
strpos()
函数:$str = "This is a sample string, with a comma";
$commaPosition = strpos($str, ',');
$afterComma = substr($str, $commaPosition);
echo $afterComma;
输出:
, with a comma
以上是获取字符串的一部分的方法,根据具体需求选择适合的函数和方法。
领取专属 10元无门槛券
手把手带您无忧上云