3v4l.org

run code in 300+ PHP versions simultaneously
<?php $great = 'fantastic'; echo "This is {$great}"; $var1="a"; $$var1="b"; echo "$var1 $a"; class Insurance{ function clsNAme(){ echo get_class($this); } } print 5+2 * 4+6; $cl = new Insurance(); $cl->clsName(); Insurance::clsName(); var_dump (3*4); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.example.com/"); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); $var = "testing module"; $statement = 'This is a $var'; echo ($statement); $var = "testing module"; $statement = "This is a $var"; echo ($statement); $arr = array("foo","bar","baz"); for ( $i = 0; $i < count($arr); $i++){ $item = $arr[$i]; } echo "<pre>"; print_r($item); echo "</pre><br/>\r\n"; $a = 3; print '$a'."\r\n"; echo '$a'."\r\n"; print "$a\r\n"; echo "$a\r\n"; $array = array(array(141,151,161), 2, 3, array(101, 202, 303)); function DisplayArray($array) { foreach ($array as $value) { if (is_array($value)) { DisplayArray($value); } else { echo $value . " "; } } } DisplayArray($array); echo 0x10; ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
This is fantastica b19Insurance Fatal error: Uncaught Error: Non-static method Insurance::clsNAme() cannot be called statically in /in/Fhi3M:15 Stack trace: #0 {main} thrown in /in/Fhi3M on line 15
Process exited with code 255.
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
This is fantastica b19Insurance Deprecated: Non-static method Insurance::clsNAme() should not be called statically in /in/Fhi3M on line 15 Fatal error: Uncaught Error: Using $this when not in object context in /in/Fhi3M:9 Stack trace: #0 /in/Fhi3M(15): Insurance::clsNAme() #1 {main} thrown in /in/Fhi3M on line 9
Process exited with code 255.
Output for 7.3.32 - 7.3.33
This is fantastica b19Insurance Fatal error: Uncaught Error: Using $this when not in object context in /in/Fhi3M:9 Stack trace: #0 /in/Fhi3M(15): Insurance::clsNAme() #1 {main} thrown in /in/Fhi3M on line 9
Process exited with code 255.
Output for 7.0.0 - 7.0.33
This is fantastica b19Insurance Deprecated: Non-static method Insurance::clsNAme() should not be called statically in /in/Fhi3M on line 15 Notice: Undefined variable: this in /in/Fhi3M on line 9 Insuranceint(12) Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/Fhi3M:18 Stack trace: #0 {main} thrown in /in/Fhi3M on line 18
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
This is fantastica b19Insurance Strict Standards: Non-static method Insurance::clsNAme() should not be called statically in /in/Fhi3M on line 15 Notice: Undefined variable: this in /in/Fhi3M on line 9 Insuranceint(12) Fatal error: Call to undefined function curl_init() in /in/Fhi3M on line 18
Process exited with code 255.

preferences:
232.51 ms | 402 KiB | 332 Q