根據最後一次出現的分隔符號分割字串
根據指定分隔符號分割字串時,預設行為是分隔在每次出現分隔符號時將字串轉換為元素。但是,在某些情況下,您可能只需要考慮最後一次出現的分隔符,而忽略任何其他分隔符。
要實現這種從右到左的分割,一種方法是利用 strrev 函數。透過反轉原始字串和分隔符,可以有效地反轉搜尋模式。
解決方案:
<code class="php">$split_point = ' - '; $string = 'this is my - string - and more'; $reversed_result = array_map('strrev', explode($split_point, strrev($string))); // Reverse the reversed result to obtain the desired output $result = array_map('strrev', $reversed_result);</code>
輸出:
<code class="php">array ( 0 => 'and more', 1 => 'string', 2 => 'this is my', )</code>
此技術允許您根據分隔符號的最後一次出現來分割字串,從而實現所需的元素分割。儘管可能存在其他解決方案,但此方法提供了一種直接有效的方法來處理此特定場景。
以上是如何在最後一次出現分隔符號時分割字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!