Giter VIP home page Giter VIP logo

Comments (1)

Athari avatar Athari commented on August 24, 2024

Obviously, some array index in one of your long chains of array indexes is missing. You should inspect the objects you receive and check what index is missing, then adjust your code appropriately. To improve debugging experience, you can change string lambdas to anonymous functions. I can suggest two ways.

1. Full index chains

$array = from($xml)
    ->select(function ($s) {
        return $s["PricedItineraries"]["PricedItinerary"];
    })
    ->orderBy(function ($s) {
        return $s["AirItineraryPricingInfo"]["ItinTotalFare"]
            ["TotalFare"]["@attributes"]["Amount"];
    })
    ->thenBy(function ($s) {
        return $s["AirItinerary"]["OriginDestinationOptions"]
            ["OriginDestinationOption"]["FlightSegment"]
            ["TPA_Extensions"]["ValidateAirline"];
    });

This way, you'll be able to put breakpoints inside functions and inspect the received objects. If your IDE supports it, it'll also stop on the line which can't find the index you need.

2. Simplified index chains

$array = from($xml)
    ->select(function($s) {
        $s = $s["PricedItineraries"];
        $s = $s["PricedItinerary"];
        return $s;
    })
    ->orderBy(function($s) {
        $s = $s["AirItineraryPricingInfo"];
        $s = $s["ItinTotalFare"];
        $s = $s["TotalFare"];
        $s = $s["@attributes"];
        $s = $s["Amount"];
        return $s;
    })
    ->thenBy(function($s) {
        $s = $s["AirItinerary"];
        $s = $s["OriginDestinationOptions"];
        $s = $s["OriginDestinationOption"];
        $s = $s["FlightSegment"];
        $s = $s["TPA_Extensions"];
        $s = $s["ValidateAirline"];
        return $s;
    });

Now you'll also see the exact line which fails. Stack trace of the exception/error will contain the line number and in this case every line contains just one index which can fail. (Usually you don't need to write code like this, but it can help during debugging.)

General

If you iterate over the returned object using foreach later in the code, calling toArray is unnecessary. In this case, the only difference is when you receive the error. Evaluation of the sequence is lazy, so without toArray not creation of the sequence will fail, but iteration over it (in foreach).

toArray will convert the iterator into plain old array, which can be helpful for serialization, debugging, passing into code which expects arrays etc.

If you need further assistance, you'll need to provide source data (so I could reproduce the problem) and exact error message with stack trace — after you apply one of the suggested modifications.

P. S. Your variable names look suspicious, by the way. Your code suggests the first line should be $array = from($xml), not $xml = from($array), considering you seem to be inspecting SimpleXML attributes.

from yalinqo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.