3v4l.org

run code in 300+ PHP versions simultaneously
<?php function l($name) { $a = ["a" => "aaa", "b" => ["a"=>"123456"], "c" => ["d"=>["e" =>"1%1"]]]; $keys = explode(".", $name); $key = array_shift($keys); $result = isset($a[$key]) ? $a[$key] : null; print $result; foreach($keys as $k) { if(!$result) return $name; $result = $result[$k]; } $args = func_get_args(); foreach($args as $k => $v) $result = str_replace("%{$k}", $v, $result); return $result; } var_dump(l("a")); var_dump(l("b.a")); var_dump(l("b.c")); var_dump(l("c.d.e", 45));
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
aaastring(3) "aaa" Warning: Array to string conversion in /in/V4R1W on line 13 Arraystring(6) "123456" Warning: Array to string conversion in /in/V4R1W on line 13 Array Warning: Undefined array key "c" in /in/V4R1W on line 19 Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /in/V4R1W on line 24 string(0) "" Warning: Array to string conversion in /in/V4R1W on line 13 Arraystring(3) "145"
Output for 8.0.0 - 8.0.30
aaastring(3) "aaa" Warning: Array to string conversion in /in/V4R1W on line 13 Arraystring(6) "123456" Warning: Array to string conversion in /in/V4R1W on line 13 Array Warning: Undefined array key "c" in /in/V4R1W on line 19 string(0) "" Warning: Array to string conversion in /in/V4R1W on line 13 Arraystring(3) "145"
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
aaastring(3) "aaa" Notice: Array to string conversion in /in/V4R1W on line 13 Arraystring(6) "123456" Notice: Array to string conversion in /in/V4R1W on line 13 Array Notice: Undefined index: c in /in/V4R1W on line 19 string(0) "" Notice: Array to string conversion in /in/V4R1W on line 13 Arraystring(3) "145"
Output for 7.3.32 - 7.3.33
aaastring(3) "aaa" Arraystring(6) "123456" Arraystring(0) "" Arraystring(3) "145"
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/V4R1W on line 7
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/V4R1W on line 7
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/V4R1W on line 7
Process exited with code 255.

preferences:
286.92 ms | 401 KiB | 369 Q