简体   繁体   中英

php array merge and convert to json

I have two arrays (below). Is it possible to convert them into json string?

Array
        (
            [0] => size
            [1] => color
        )
Array
        (
            [0] => L
            [1] => Black
        )

Output structure should be:

[
   {"name":"size","value":"L"},
   {"name":"color","value":"Black"}
]

Thanks!

Sure:

$array1 = array('size', 'color');
$array2 = array('L', 'Black');

$jsonArray = array();
foreach (array_combine( $array1, $array2 ) as $name => $value) {
    $jsonArray[] = array('name' => $name, 'value' => $value);
}

echo $json = json_encode($jsonArray);

This gives you

[{"name":"size","value":"L"},{"name":"color","value":"Black"}]

这应该工作:

$json = json_encode( array_combine( $array1, $array2 ) );
    $array1 = array('size', 'color');
    $array2 = array('L', 'Black');

    $result = array_combine($array1 , $array2);
    $json = array();
    foreach($result as $key => $val){
     $json[] = array('name' => $key, 'value' => $value);
    }
    $json = json_encode($json);

Something like this should work just how you want:

<?php
    $keys = array("size", "color");
    $values = array("L", "Black");

    $array = array();
    foreach ($keys as $i => $key) {
        $array[] = array(
            "name" => $key,
            "value" => $values[$i]
        );
    }

    $json = json_encode($array);

    var_dump($json);

    //string(62) "[{"name":"size","value":"L"},{"name":"color","value":"Black"}]"
?>

I think you are looking for this:

$array1 = array('size', 'color');
$array2 = array('L', 'Black');
for($i=0;$i<sizeof($array1);$i++)
   {
    $array3[]=array($array1[$i]=>$array2[$i]);
    }
echo json_encode($array3);

?>

Output:

[{"size":"L"},{"color":"Black"}]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM