如何刪除PHP 中特定子字串之後的部分字串
您可以使用下列指令刪除PHP 中特定子字串之後的所有內容substr() 函數。 substr() 函數接受三個參數:
要刪除某個子字串之後的所有內容,可以使用strpos() 函數來尋找該子字串在輸入字串中的位置。然後,您可以使用 substr() 函數來提取字串中子字串之前的部分。
例如,以下程式碼刪除子字串「By」及其之後的所有文字來自字串「Posted On April 6th By Some Dude」:
<code class="php">$string = "Posted On April 6th By Some Dude"; $substring = "By"; $position = strpos($string, $substring); if ($position !== false) { $string = substr($string, 0, $position); }</code>
執行上述程式碼後, $string變數的值將會是「Posted On April 6th」。
以上是如何刪除 PHP 中特定子字串之後的所有內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!