如何刪除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