3v4l.org

run code in 300+ PHP versions simultaneously
<?php $search = array( '/&#36;/', "/\r/", // Non-legal carriage return "/[\n\t]+/", // Newlines and tabs '/[ ]{2,}/', // Runs of spaces, pre-handling '/<script[^>]*>.*?<\/script>/i', // <script>s -- which strip_tags supposedly has problems with '/<style[^>]*>.*?<\/style>/i', // <style>s -- which strip_tags supposedly has problems with //'/<!-- .* -->/', // Comments -- which strip_tags might have problem a with '/<h[123][^>]*>(.*?)<\/h[123]>/i', // H1 - H3 '/<h[456][^>]*>(.*?)<\/h[456]>/ie', // H4 - H6 '/<p[^>]*>/i', // <P> '/<br[^>]*>/i', // <br> '/<b[^>]*>(.*?)<\/b>/i', // <b> '/<strong[^>]*>(.*?)<\/strong>/i', // <strong> '/<i[^>]*>(.*?)<\/i>/i', // <i> '/<em[^>]*>(.*?)<\/em>/i', // <em> '/(<ul[^>]*>|<\/ul>)/i', // <ul> and </ul> '/(<ol[^>]*>|<\/ol>)/i', // <ol> and </ol> '/<li[^>]*>(.*?)<\/li>/i', // <li> and </li> '/<li[^>]*>/i', // <li> // '/<a [^>]*href="(.*?)([^"]+)"[^>]*><\/a>/ie', '/<a [^>]*href="([^"]+)"[^>]*>(.*?)<\/a>/ie', // <a href=""> '/<hr[^>]*>/i', // <hr> '/(<table[^>]*>|<\/table>)/i', // <table> and </table> '/(<tr[^>]*>|<\/tr>)/i', // <tr> and </tr> '/<td[^>]*>(.*?)<\/td>/i', // <td> and </td> '/<th[^>]*>(.*?)<\/th>/i', // <th> and </th> '/&(nbsp|#160);/i', // Non-breaking space '/&(quot|rdquo|ldquo|#8220|#8221|#147|#148);/i', // Double quotes '/&(apos|rsquo|lsquo|#8216|#8217);/i', // Single quotes '/&gt;/i', // Greater-than '/&lt;/i', // Less-than '/&(amp|#38);/i', // Ampersand '/&(copy|#169);/i', // Copyright '/&(trade|#8482|#153);/i', // Trademark '/&(reg|#174);/i', // Registered '/&(mdash|#151|#8212);/i', // mdash '/&(ndash|minus|#8211|#8722);/i', // ndash '/&(bull|#149|#8226);/i', // Bullet '/&(pound|#163);/i', // Pound sign '/&(euro|#8364);/i', // Euro sign //'/&[^&;]+;/i', // Unknown/unhandled entities '/&[a-z0-9#]{1,10};/i', // Unknown/unhandled entities '/[ ]{2,}/' // Runs of spaces, post-handling ); /** * List of pattern replacements corresponding to patterns searched. * * @var array $replace * @access public * @see $search */ $replace = array( '$', '', // Non-legal carriage return ' ', // Newlines and tabs ' ', // Runs of spaces, pre-handling '', // <script>s -- which strip_tags supposedly has problems with '', // <style>s -- which strip_tags supposedly has problems with //'', // Comments -- which strip_tags might have problem a with "\n\n\\1\n\n", // H1 - H3 "ucwords(\"\n\n\\1\n\n\")", // H4 - H6 "\n\n\t", // <P> "\n", // <br> "\\1", // <b> "\\1", // <strong> '_\\1_', // <i> '_\\1_', // <em> "\n\n", // <ul> and </ul> "\n\n", // <ol> and </ol> "\t* \\1\n", // <li> and </li> "\n\t* ", // <li> '$this->_build_link_list("\\1", "\\2")', // <a href=""> "\n-------------------------\n", // <hr> "\n\n", // <table> and </table> "\n", // <tr> and </tr> "\t\t\\1\n", // <td> and </td> "\t\t\\1\n", // <th> and </th> ' ', // Non-breaking space '"', // Double quotes "'", // Single quotes '>', '<', '&', '(c)', '(tm)', '(R)', '--', '-', '*', '▒', 'EUR', // Euro sign. . ? '', // Unknown/unhandled entities ' ' // Runs of spaces, post-handling ); $data = <<<EOT <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>email</title> </head> <body style="margin: 0;padding: 0;background: #f9f9f9;font-size: 14px;color: #5b656e;"> <!-- Preheader --> <table cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;background-color: #5b656e;"> <tr> <td style="font-family: tahoma, geneva, sans-serif;color: #313a42;border-collapse: collapse;"> <table border="0" cellpadding="0" cellspacing="0" summary="" width="640" align="center" style="border-collapse: collapse;"> <tr> <td style="font-family: tahoma, geneva, sans-serif;color: white;border-collapse: collapse;font-size: 10px;width: 440px;padding: 5px 10px;">Don't want to hear from us anymore? <a href="$unsubscribe$" style="color: #09c;">Unsubscribe here.</a></td> </tr> </table> </td> </tr> </table> EOT; var_dump(preg_replace($search, $replace, $data));
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined variable $unsubscribe in /in/TnNUs on line 122 Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead in /in/TnNUs on line 132 NULL
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead in /in/TnNUs on line 132 NULL
Output for 7.3.32 - 7.3.33
Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead in /in/TnNUs on line 132 NULL
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 128 Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /in/TnNUs on line 132 Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /in/TnNUs on line 132 Fatal error: Using $this when not in object context in /in/TnNUs(132) : regexp code on line 1
Process exited with code 255.
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 128 Fatal error: Using $this when not in object context in /in/TnNUs(132) : regexp code on line 1
Process exited with code 255.
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0 - 5.2.2
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Fatal error: Using $this when not in object context in /in/TnNUs(132) : regexp code on line 1
Process exited with code 255.
Output for 5.1.2
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Fatal error: Using $this when not in object context in /in/TnNUs(133) : regexp code on line 1
Process exited with code 255.
Output for 5.0.0 - 5.0.3
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Fatal error: Using $this when not in object context in /in/TnNUs(132) : regexp code on line 1
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.9
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Fatal error: Call to a member function on a non-object in /in/TnNUs(132) : regexp code on line 1
Process exited with code 255.
Output for 4.4.2
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Fatal error: Call to a member function on a non-object in /in/TnNUs(133) : regexp code on line 1
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Notice: Undefined variable: unsubscribe in /in/TnNUs on line 122 Fatal error: Call to a member function on a non-object in /in/TnNUs(132) : regexp code on line 1

preferences:
217.14 ms | 401 KiB | 314 Q