3v4l.org

run code in 300+ PHP versions simultaneously
<?php $bbcode = <<<BBCODE Want a list? [ul][li]Here is a video: https://www.youtube.com/watch?v=mUxt--mMjwA[/li] [li]This is a [b]tagged[/b] video: [url]https://www.youtube.com/watch?v=u6MyOXk98DI[/url][/li] [li]This is a [b]tagged & attributed[/b] video: [url=https://www.youtube.com/watch?v=8G2WzH4AKpE]Pearl Jam - Present Tense[/url][/li] [li]Look at this:https://www.example.com/example?ohyeah=sure#okay this is a raw link[/li] [li][i]No attibute[/i] bbcode url: [url]http://example.com/x1[/url][/li] [li]A url with link and link text: [url=http://example.com/x2]x2[/url][/li] [li]Image with \"ignorable" text: [IMG=https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Portrait_of_Julie_Bishop.jpg/220px-Portrait_of_Julie_Bishop.jpg]Julie Bishop[/IMG][/li] [li]Image: [img=https://docs.joomla.org/images/3/37/Joomla-3D-Vertical-logo-light-background-en.png][/img][/li] [li][quote]"I could either watch it happen or be a part of it."[/quote] - Elon Musk[/li] [li][user=2943403]mickmackusa[/user][/li] [li]Code: [code]while (\$noSuccess) { tryAgain(); if (\$dead) break; }[/code][/li] [/ul] BBCODE; $search = array ( '~\[b](.*?)\[/b]~is', '~\[i](.*?)\[/i]~is', '~\[u](.*?)\[/u]~is', '~\[ul](.*?)\[/ul]~is', '~\[li](.*?)\[/li]~is', '~\[user=(.*?)](.*?)\[/user]~i', '~\[url=https?.*?(?:[/?&](?:e|vi?|ci)(?:[/=]|%3D)|youtu\.be/|embed/|/user/[^/]+#p/(?:[^/]+/)+)([\w-]{10,12})].*?\[/url]~i', '~\[url]https?.*?(?:[/?&](?:e|vi?|ci)(?:[/=]|%3D)|youtu\.be/|embed/|/user/[^/]+#p/(?:[^/]+/)+)([\w-]{10,12}).*?\[/url]~i', '~\[url=((?:ht|f)tps?://[a-z\d.-]+\.[a-z]{2,3}/\S*?)](.*?)\[/url]~i', '~\[url]((?:ht|f)tps?://[a-z\d.-]+\.[a-z]{2,3}/\S*?)\[/url]~i', '~\[img=(.*?)].*?\[/img]~i', '~\[quote](.*?)\[/quote]~is', '~\[code](.*?)\[/code]~is', '~(?:<a.*?</a>|<img.*?</img>|<iframe.*?</iframe>)(*SKIP)(*FAIL)|(?:\bhttps?.*?(?:[/?&](?:e|vi?|ci)(?:[/=]|%3D)|youtu\.be/|embed/|/user/[^/]+#p/(?:[^/]+/)+)([\w-]{10,12}))\S*~i', '~(?:<a.*?</a>|<img.*?</img>|<iframe.*?</iframe>)(*SKIP)(*FAIL)|\bhttps?://.+?(?=\s|$)~im' ); $replace = array ( '<strong>$1</strong>', '<em>$1</em>', '<u>$1</u>', '<ul>$1</ul>', '<li>$1</li>', '<a href="../login/profile?u=$1" target="_blank">$2</a>', '<iframe width="640" height="360" src="https://www.youtube.com/embed/$1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>', '<iframe width="640" height="360" src="https://www.youtube.com/embed/$1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>', '<a href="$1" target="_blank">$2</a>', '<a href="$1" target="_blank">$1</a>', '<img src="$1"></img>', '<quote>$1</quote>', '<code>$1</code>', '<iframe width="640" height="360" src="https://www.youtube.com/embed/$1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>', '<a href="$0" target="_blank">$0</a>' ); echo preg_replace($search, $replace, $bbcode);
Output for 4.4.9, 5.2.5 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.4, 8.3.6 - 8.3.7
Want a list? <ul><li>Here is a video: <iframe width="640" height="360" src="https://www.youtube.com/embed/mUxt--mMjwA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <li>This is a <strong>tagged</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/u6MyOXk98DI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>This is a <strong>tagged & attributed</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/8G2WzH4AKpE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>Look at this:<a href="https://www.example.com/example?ohyeah=sure#okay" target="_blank">https://www.example.com/example?ohyeah=sure#okay</a> this is a raw link</li> <li><em>No attibute</em> bbcode url: <a href="http://example.com/x1" target="_blank">http://example.com/x1</a></li> <li>A url with link and link text: <a href="http://example.com/x2" target="_blank">x2</a></li> <li>Image with \"ignorable" text: <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Portrait_of_Julie_Bishop.jpg/220px-Portrait_of_Julie_Bishop.jpg"></img></li> <li>Image: <img src="https://docs.joomla.org/images/3/37/Joomla-3D-Vertical-logo-light-background-en.png"></img></li> <li><quote>"I could either watch it happen or be a part of it."</quote> - Elon Musk</li> <li><a href="../login/profile?u=2943403" target="_blank">mickmackusa</a></li> <li>Code: <code>while ($noSuccess) { tryAgain(); if ($dead) break; }</code></li> </ul>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Want a list? <ul><li>Here is a video: <iframe width="640" height="360" src="https://www.youtube.com/embed/mUxt--mMjwA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <li>This is a <strong>tagged</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/u6MyOXk98DI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>This is a <strong>tagged & attributed</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/8G2WzH4AKpE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>Look at this:<a href="https://www.example.com/example?ohyeah=sure#okay" target="_blank">https://www.example.com/example?ohyeah=sure#okay</a> this is a raw link</li> <li><em>No attibute</em> bbcode url: <a href="http://example.com/x1" target="_blank">http://example.com/x1</a></li> <li>A url with link and link text: <a href="http://example.com/x2" target="_blank">x2</a></li> <li>Image with \"ignorable" text: <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Portrait_of_Julie_Bishop.jpg/220px-Portrait_of_Julie_Bishop.jpg"></img></li> <li>Image: <img src="https://docs.joomla.org/images/3/37/Joomla-3D-Vertical-logo-light-background-en.png"></img></li> <li><quote>"I could either watch it happen or be a part of it."</quote> - Elon Musk</li> <li><a href="../login/profile?u=2943403" target="_blank">mickmackusa</a></li> <li>Code: <code>while ($noSuccess) { tryAgain(); if ($dead) break; }</code></li> </ul>
Output for 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.8, 5.0.0 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0 - 5.2.4
Warning: preg_replace(): Compilation failed: nothing to repeat at offset 48 in /in/tIVlj on line 59 Warning: preg_replace(): Compilation failed: nothing to repeat at offset 48 in /in/tIVlj on line 59 Want a list? <ul><li>Here is a video: https://www.youtube.com/watch?v=mUxt--mMjwA</li> <li>This is a <strong>tagged</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/u6MyOXk98DI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>This is a <strong>tagged & attributed</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/8G2WzH4AKpE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>Look at this:https://www.example.com/example?ohyeah=sure#okay this is a raw link</li> <li><em>No attibute</em> bbcode url: <a href="http://example.com/x1" target="_blank">http://example.com/x1</a></li> <li>A url with link and link text: <a href="http://example.com/x2" target="_blank">x2</a></li> <li>Image with \"ignorable" text: <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Portrait_of_Julie_Bishop.jpg/220px-Portrait_of_Julie_Bishop.jpg"></img></li> <li>Image: <img src="https://docs.joomla.org/images/3/37/Joomla-3D-Vertical-logo-light-background-en.png"></img></li> <li><quote>"I could either watch it happen or be a part of it."</quote> - Elon Musk</li> <li><a href="../login/profile?u=2943403" target="_blank">mickmackusa</a></li> <li>Code: <code>while ($noSuccess) { tryAgain(); if ($dead) break; }</code></li> </ul>
Output for 4.4.2, 5.1.2
Warning: preg_replace(): Compilation failed: nothing to repeat at offset 48 in /in/tIVlj on line 60 Warning: preg_replace(): Compilation failed: nothing to repeat at offset 48 in /in/tIVlj on line 60 Want a list? <ul><li>Here is a video: https://www.youtube.com/watch?v=mUxt--mMjwA</li> <li>This is a <strong>tagged</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/u6MyOXk98DI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>This is a <strong>tagged & attributed</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/8G2WzH4AKpE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>Look at this:https://www.example.com/example?ohyeah=sure#okay this is a raw link</li> <li><em>No attibute</em> bbcode url: <a href="http://example.com/x1" target="_blank">http://example.com/x1</a></li> <li>A url with link and link text: <a href="http://example.com/x2" target="_blank">x2</a></li> <li>Image with \"ignorable" text: <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Portrait_of_Julie_Bishop.jpg/220px-Portrait_of_Julie_Bishop.jpg"></img></li> <li>Image: <img src="https://docs.joomla.org/images/3/37/Joomla-3D-Vertical-logo-light-background-en.png"></img></li> <li><quote>"I could either watch it happen or be a part of it."</quote> - Elon Musk</li> <li><a href="../login/profile?u=2943403" target="_blank">mickmackusa</a></li> <li>Code: <code>while ($noSuccess) { tryAgain(); if ($dead) break; }</code></li> </ul>
Output for 4.3.0 - 4.3.10
Warning: Compilation failed: nothing to repeat at offset 48 in /in/tIVlj on line 59 Warning: Compilation failed: nothing to repeat at offset 48 in /in/tIVlj on line 59 Want a list? <ul><li>Here is a video: https://www.youtube.com/watch?v=mUxt--mMjwA</li> <li>This is a <strong>tagged</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/u6MyOXk98DI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>This is a <strong>tagged & attributed</strong> video: <iframe width="640" height="360" src="https://www.youtube.com/embed/8G2WzH4AKpE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></li> <li>Look at this:https://www.example.com/example?ohyeah=sure#okay this is a raw link</li> <li><em>No attibute</em> bbcode url: <a href="http://example.com/x1" target="_blank">http://example.com/x1</a></li> <li>A url with link and link text: <a href="http://example.com/x2" target="_blank">x2</a></li> <li>Image with \"ignorable" text: <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Portrait_of_Julie_Bishop.jpg/220px-Portrait_of_Julie_Bishop.jpg"></img></li> <li>Image: <img src="https://docs.joomla.org/images/3/37/Joomla-3D-Vertical-logo-light-background-en.png"></img></li> <li><quote>"I could either watch it happen or be a part of it."</quote> - Elon Musk</li> <li><a href="../login/profile?u=2943403" target="_blank">mickmackusa</a></li> <li>Code: <code>while ($noSuccess) { tryAgain(); if ($dead) break; }</code></li> </ul>

preferences:
335.94 ms | 405 KiB | 463 Q