dpthuyh1678 2016-03-10 02:32
浏览 50
已采纳

如何将JSON字符串更改为单个数组

I have a json string, now i want it to become another string like an array and the $key is the same with $value

original string:

$input='
{
        "label_values":[
        "OK1","OK2","OK3"
        ]
}'

tried json_decode

$obj = json_decode($input);
$results = $obj->{'label_values'};
$result = implode(",", $results);

and $result export OK1,OK2,OK3

$key is the same with $value,i want it change to below example

Array(
        "OK1"=>"OK1",
        "OK2"=>"OK2",
        "OK3"=>"OK3"
)

Any help is greatly appreciated

  • 写回答

1条回答 默认 最新

  • doufu8588 2016-03-10 02:38
    关注

    You can simply use array_combine().

    array_combine() returns an array using first argument as keys and second argument as values:

    $result = array_combine( $results, $results );
    

    <kbd>3v4l demo</kbd>


    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示