<?php $names = ["barira, stefan", "cikka, maria", "luppo, martin ", "bill, sebastian"]; $result = array_map(function($v) { $a = explode(',', $v); return trim($a[1]).', '.trim($a[0]); }, $names); print_r($result);
You have javascript disabled. You will not be able to edit any code.