<?php $list = []; $list[] = [ "name" => "bill gates", "os" => "windows" ]; $list[] = [ "name" => "steve jobs", "os" => "mac" ]; $list[] = [ "name" => "linus torvals", "os" => "linux" ]; var_dump(implode(', ', (array_map(function ($item) { return implode(' > ',$item); }, $list))));
You have javascript disabled. You will not be able to edit any code.