3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = <<<TXT http://www.something.com and https://www.something.com</p> are working. Also http://www.something.com/some/thing/index.html works. www.something.com not and http://something.com. also gives a problem. Also https://something.com/something/else/test?something=true. This is a test for the URL thingy.This is a test for the URL thingy.This is.... etc.. TXT; if (preg_match_all('~(https?://|www)[a-z\d.-]+[\w/.?=&%:#]*\w~i', $text, $matches)) { foreach ($matches[0] as $url) { $prefix = stripos($url, 'www') === 0 ? 'http://' : ''; $text = str_replace($url, "<a href='{$prefix}{$url}'>{$url}</a>", $text); } } echo $text;
Output for git.master, git.master_jit, rfc.property-hooks
<a href='http://<a href='http://www.something.com'>www.something.com</a>'>http://<a href='http://www.something.com'>www.something.com</a></a> and <a href='https://<a href='http://www.something.com'>www.something.com</a>'>https://<a href='http://www.something.com'>www.something.com</a></a></p> are working. Also <a href='http://<a href='http://www.something.com'>www.something.com</a>'>http://<a href='http://www.something.com'>www.something.com</a></a>/some/thing/index.html works. <a href='http://www.something.com'>www.something.com</a> not and <a href='http://something.com'>http://something.com</a>. also gives a problem. Also <a href='https://something.com/something/else/test?something=true'>https://something.com/something/else/test?something=true</a>. This is a test for the URL thingy.This is a test for the URL thingy.This is.... etc..

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:
64.35 ms | 403 KiB | 8 Q