3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text1 = <<<EOD <tr class="aaa"> <td class="bbb"> <p> あああああ </p> </td> <tr> EOD; $text2 = <<<EOD <tr class="aaa"> <td class="bbb"> あああああ </td> <tr> EOD; echo "[RESULT 1]\n"; echo = preg_replace_callback( '@(<br[^>]*+>)|\s*+</?+p>\s*+|(?<=<t(?:r|d))[^>]*+(?=>)@', function ($matches) { return isset($matches[1]) ? '、' : ''; }, $text1 ); echo "\n[RESULT 2]\n"; echo = preg_replace_callback( '@(<br[^>]*+>)|</?+p>|(?<=<t(?:r|d))[^>]*+(?=>)@', function ($matches) { return isset($matches[1]) ? '、' : ''; }, $text2 );
Output for 5.4.20
Parse error: syntax error, unexpected '=' in /in/f6C9Q on line 23
Process exited with code 255.
Output for 5.3.0 - 5.3.27, 5.4.0 - 5.4.19
Parse error: syntax error, unexpected '=' in /in/mDM2j on line 23
Process exited with code 255.

preferences:
179.85 ms | 1395 KiB | 56 Q