3v4l.org

run code in 300+ PHP versions simultaneously
<?php mb_internal_encoding('UTF-8'); mb_http_output('UTF-8'); $someFoo = '{ "Foo" : "Bar" }'; echo mb_detect_encoding($asciiData) . "\r\n"; var_dump(json_decode($asciiData)); $utf8Data = utf8_encode($someFoo); echo mb_detect_encoding($utf8Data) . "\r\n"; var_dump(json_decode($utf8Data));
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined variable $asciiData in /in/bpMEH on line 8 Deprecated: mb_detect_encoding(): Passing null to parameter #1 ($string) of type string is deprecated in /in/bpMEH on line 8 ASCII Warning: Undefined variable $asciiData in /in/bpMEH on line 9 Deprecated: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in /in/bpMEH on line 9 NULL Deprecated: Function utf8_encode() is deprecated in /in/bpMEH on line 11 ASCII object(stdClass)#1 (1) { ["Foo"]=> string(3) "Bar" }
Output for 8.1.0 - 8.1.28
Warning: Undefined variable $asciiData in /in/bpMEH on line 8 Deprecated: mb_detect_encoding(): Passing null to parameter #1 ($string) of type string is deprecated in /in/bpMEH on line 8 ASCII Warning: Undefined variable $asciiData in /in/bpMEH on line 9 Deprecated: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in /in/bpMEH on line 9 NULL ASCII object(stdClass)#1 (1) { ["Foo"]=> string(3) "Bar" }
Output for 8.0.0 - 8.0.30
Warning: Undefined variable $asciiData in /in/bpMEH on line 8 ASCII Warning: Undefined variable $asciiData in /in/bpMEH on line 9 NULL ASCII object(stdClass)#1 (1) { ["Foo"]=> string(3) "Bar" }
Output for 5.2.0 - 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.31, 7.4.0 - 7.4.33
Notice: Undefined variable: asciiData in /in/bpMEH on line 8 ASCII Notice: Undefined variable: asciiData in /in/bpMEH on line 9 NULL ASCII object(stdClass)#1 (1) { ["Foo"]=> string(3) "Bar" }
Output for 7.3.32 - 7.3.33
ASCII NULL ASCII object(stdClass)#1 (1) { ["Foo"]=> string(3) "Bar" }
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.6
Notice: Undefined variable: asciiData in /in/bpMEH on line 8 ASCII Fatal error: Call to undefined function json_decode() in /in/bpMEH on line 9
Process exited with code 255.
Output for 5.0.0 - 5.0.3
Notice: Undefined variable: asciiData in /in/bpMEH on line 8 ASCII Fatal error: Call to undefined function json_decode() in /in/bpMEH on line 9
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Notice: Undefined variable: asciiData in /in/bpMEH on line 8 ASCII Fatal error: Call to undefined function: json_decode() in /in/bpMEH on line 9
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Notice: Undefined variable: asciiData in /in/bpMEH on line 8 ASCII Fatal error: Call to undefined function: json_decode() in /in/bpMEH on line 9
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Notice: Undefined variable: asciiData in /in/bpMEH on line 8 ASCII Fatal error: Call to undefined function: json_decode() in /in/bpMEH on line 9

preferences:
266.36 ms | 401 KiB | 459 Q