3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Dictionary implements ArrayAccess { function offsetExists($offset) {} function offsetGet($offset) {} function offsetUnset($offset) {} function offsetSet($offset, $value) { if (!is_string($offset)) { throw new InvalidArgumentException(); } } } try { $Dictionary = new Dictionary(); $Dictionary["12"] = 0xDEADBEEF; echo "No Exception for \"12\"\n"; } catch (InvalidArgumentException $e) { echo "Caught Exception for \"12\"\n"; } try { $str = "12"; $Dictionary[$str] = 0xDEADBEEF; echo "No Exception for \$variable = \"12\"\n"; } catch (InvalidArgumentException $e) { echo "Caught Exception for \$variable = \"12\"\n"; } ?>

This is an error 500

Value for `_results` contains invalid data `array`


preferences:
148.54 ms | 2852 KiB | 8 Q