如何删除 PHP 中特定子字符串之后的部分字符串
您可以使用以下命令删除 PHP 中特定子字符串之后的所有内容substr() 函数。 substr()函数接受三个参数:
要删除某个子字符串之后的所有内容,可以使用 strpos() 函数查找该子字符串在输入字符串中的位置。然后,您可以使用 substr() 函数提取字符串中子字符串之前的部分。
例如,以下代码删除子字符串“By”及其之后的所有文本来自字符串 "Posted On April 6th By Some Dude":
$string = "Posted On April 6th By Some Dude";
$substring = "By";
$position = strpos($string, $substring);
if ($position !== false) {
$string = substr($string, 0, $position);
}
执行上述代码后,$string变量的值为“Posted On April 6th”。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3