dongsetan3216 2019-01-09 09:01
浏览 32
已采纳

从PHP数组中提取特定数据

I wrote a function wheere I need to store some data in database. I have multidimensional associative array.

I dumped one part of the code..

When I dump:

            $csv->setCode($data[7]);

            dump($data[7]);die;

and I get

"{"id":"131-2-0-615317","o":"raccoon-events-ltd","j":"Member of the...","c":"Sport For All..."}"

Now, I need to pull out just the "ID" part of the code..

I just tried:

dump($data[7]=>id);die;
  • 写回答

1条回答 默认 最新

  • dongren4099 2019-01-09 09:03
    关注

    Its JSON use this code:

    $json = json_decode($data[7],true);
    dump($json['id']);die;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?