3v4l.org

run code in 300+ PHP versions simultaneously
<?php phpversion() >= "7.0.1" or die(); $obj = new stdClass(); $obj->bar = "abc"; $data = array("foo" => "bar"); $key = "foo"; // the good: without and within a string echo $obj->{$data[$key]},"\n"; echo "{$obj->{$data[$key]}}\n"; // updating $obj->bar ... $obj->bar = "xyz"; // complex curly brace syntax: without and within a string echo $obj->{${'data'}[$key]},"\n"; echo "{$obj->{${'data'}[$key]}}\n";

preferences:
28.7 ms | 402 KiB | 5 Q