普通网友 2019-04-29 18:22
浏览 56
已采纳

如何在复杂的数组中使用cakephp集合函数,它只适用于简单的数组

I transformed an XML to JSON, this is the link: https://api.myjson.com/bins/us5f4

I used a lot of CakePHP 3.30 and below Collection's functions. What I need to do is to only extract some data, for example the tag @INDICATOR and @TIME_PERIOD.

I already tried using nest, filter, append, map in collections and none of them work for some reason.

This is my controller:

<?php
namespace App\Controller;

use App\Controller\AppController;
use Cake\Collection\Collection;
use Cake\ORM\TableRegistry;
use Cake\Utility\Xml;

class BalancesFiscalesController extends AppController
{public function balancesDatos2(){
        $xmlArray = Xml::toArray(Xml::build('webroot/e-ggds/BalanceFiscalGC.xml'));


                    $collection = new Collection($xmlArray);
                    $collection->nest('@INDICATOR', '[]')->toList(); //I tried with the parent "Series" still same problem. It returns me the whole JSON instead of what I need. I also tried filter, map, append, no luck.

        //Gobierno Central
        $response = [
            'gob_central' =>[
                    'titulos' =>[
                        $collection
                    ]
                    ]
            ];


           $this->set([
            'data' => $response,
            '_serialize' => ['data']
              ]);

    }

}

  • 写回答

1条回答 默认 最新

  • duanbu4962 2019-04-30 21:30
    关注

    To extract a field from a collection, you'd use the extract function. Assuming that it's all under the [data][gob_central][titulos][0][StructureSpecificData][message:DataSet][Series] key, it might look like this:

    $series = $xmlArray['data']['gob_central']['titulos'][0]['StructureSpecificData']['message:DataSet']['Series'];
    $data = collection($series)->extract('@INDICATOR')->toArray();
    

    If there might be multiple items in the titulos key, then maybe more like this:

    $titulos = $xmlArray['data']['gob_central']['titulos'];
    $data = collection($titulos)->extract('StructureSpecificData.message:DataSet.Series.{*}.@INDICATOR')->toArray();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决