Skip to content
Advertisement

Tag: array-merge

I can’t generate the correct Json file in PHP

it does not work properly please help me to get the correct json file? in particular when I inserted it in the site in php I got this array so the Json file creates it correctly this is the first array I generate via submit of my form. this array I add it to the end of the Json file,

Join two associative array based on key using PHP

I have two arrays here: I want to join them, kind of left join in mysql so the result will be like this The address will be merged to $array1 based on the id. Is this possible using PHP? Please help. Thanks. Answer You can simplify this problem by using array_column to re-index $array2 by the id values; then it’s

Advertisement