使用PHP 連結字串中的URL
問題:
問題:問題:
問題:
問題:<code class="php">$string = "Look on http://www.google.com"; $string = preg_replace("~[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]~", "<a href=\"\0\">\0</a>", $string);</code>
問題:
<code class="php">$string = "Look on http://www.google.com"; $string = ereg_replace("~[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]~", "<a href=\"\0\">\0</a>", $string);</code>問題: 解:PHP 提供了幾種連結字串中URL 的方法:使用preg_replace ()使用preg_replace () 此函數可以如下使用:使用ereg_replace()對於5.3 之前的PHP 版本,ereg_replace() 提供了一種替代方法:這兩種方法都可以有效地將字串中的URL 轉換為可點擊的連結。
以上是如何使用 PHP 將字串中的 URL 轉換為可點擊的連結?的詳細內容。更多資訊請關注PHP中文網其他相關文章!