3v4l.org

run code in 300+ PHP versions simultaneously
<?php function autolink($str, $attributes=array()) { $attrs = ''; foreach ($attributes as $attribute => $value) { $attrs .= " {$attribute}=\"{$value}\""; } $str = ' ' . $str; $str = preg_replace( '`([^"=\'>])(((http|https|ftp)://|www.)[^\s<]+[^\s<\.)])`i', '$1<a href="$2"'.$attrs.'>$2</a>', $str ); $str = substr($str, 1); $str = preg_replace('`href=\"www`','href="http://www',$str); // fügt http:// hinzu, wenn nicht vorhanden return $str; } $text="PHP-Infos finden sich auf http://www.php.net und zu preg_replace()auf http://www.php.net/manual/de/function.preg-replace.php"; echo $text; echo "<br>"; echo autolink($text); ?>
Output for git.master, git.master_jit, rfc.property-hooks
PHP-Infos finden sich auf http://www.php.net und zu preg_replace()auf http://www.php.net/manual/de/function.preg-replace.php<br>PHP-Infos finden sich auf <a href="http://www.php.net">http://www.php.net</a> und zu preg_replace()auf <a href="http://www.php.net/manual/de/function.preg-replace.php">http://www.php.net/manual/de/function.preg-replace.php</a>

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.77 ms | 402 KiB | 8 Q