PHP提供多種字串截取函數:substr():截取字串指定部分。 substring():從字串結尾向起始位置截取子字串。 substr_replace():替換字串指定部分。 str_replace():替換字串指定部分為其他部分。
PHP 中截取字串的函數
PHP 提供了多種函數來截取字串,其中最常用的包括:
例如:
<code class="php">$string = "Hello World!"; $substring = substr($string, 0, 5); // "Hello"</code>
例如:
<code class="php">$string = "Hello World!"; $substring = substring($string, 10, 5); // "World"</code>
例如:
<code class="php">$string = "Hello World!"; $substring = substr_replace($string, "there", 7, 5); // "Hello there!"</code>
例如:
<code class="php">$string = "Hello World!"; $substring = str_replace("World", "there", $string); // "Hello there!"</code>
以上是php中截取字串的函數是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!