<?php $my_array = [ "keywords" => "test", "locationId" => [ 0 => "1", 1 => "2"], "industries" => "1" ]; array_walk( $my_array, function(&$v) { $v = implode(',', (array)$v); } ); var_export($my_array);
You have javascript disabled. You will not be able to edit any code.