3v4l.org

run code in 300+ PHP versions simultaneously
<?php $sometext = "Some text **that is bold!** and some other text"; $string = explode('**', $sometext); $newStr = ''; $size = count($string); for ($i = 0; $i < $size; ++$i) { if (($i % 2 == 0 || $i == 0 ) && && $string[$i] != "") $newStr .= $string[$i]."<b>"; else if($i % 2 != 0 && $string[$i] != "") $newStr .= $string[$i]."</b>" ; } echo $newStr;
Output for 5.4.0 - 5.4.25
Parse error: syntax error, unexpected '&&' (T_BOOLEAN_AND) in /in/2EBvK on line 8
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_BOOLEAN_AND in /in/2EBvK on line 8
Process exited with code 255.

preferences:
190.7 ms | 1395 KiB | 62 Q