3v4l.org

run code in 500+ PHP versions simultaneously
<?php $product = ["product_type" => "DVD", "size" => 20, "dimentions" => "300x200", "weight" => 10]; $lookup = [ "DVD" => ["field" => "size", "append" => "MB"], "Furniture" => ["field" => "dimentions", "append" => ""], "Book" => ["field" => "weight", "append" => ""], ]; $LookupItem = $lookup[$product["product_type"]]; echo $product[$LookupItem["field"]].$LookupItem["append"];
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.21, 8.5.0 - 8.5.7
20MB

preferences:
89.23 ms | 1251 KiB | 4 Q