Last active
April 27, 2022 20:08
-
-
Save madeinnordeste/5830ee53c6ebf17c4b33 to your computer and use it in GitHub Desktop.
PHP - Transform text URL to Hyperlink
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$text = "Hi, please visit (http://www.google.com)"; | |
$text = preg_replace("#http://([A-z0-9./-]+)#", '<a href="$1">$0</a>', $text); | |
echo $text; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment