Discussion Need help on PHP with EDDB API

Hello there,

I'd like some help on how to get some datas from the JSON thet EDDB.io let us use.
I'd like to show in PHP some datas from https://eddb.io/archive/v5/systems_populated.json.

I took the 5 first systems for a few tests on my localhost and I have this array with print_r https://www.51thmassilia.net/wing51/test4.php

My question is: how can i simply show the influence value of the last system (BV PHOENICIS) shown in the array for the 5th minor faction ?

Here's how I wanted to do it.
PHP:
        <?php
         // $json = file_get_contents('https://eddb.io/archive/v5/systems_populated.json');
        $json = file_get_contents('http://ww1.blackstorm-universe.net/systems_populated1.json');

        $parsed_json = json_decode($json);
        $influence51th = $parsed_json->{'minor_faction_presences'}[5]->{'influence'};
        ?>

But I'm stuck with the text shown in red below. How can I select to a specific objet please ?

Code:
[COLOR=#ff0000]Array
  (
    [0] => Array
        ([/COLOR]
            [id] => 1
            [edsm_id] => 12695
            [name] => 1 G. Caeli
            [x] => 80.90625
            [y] => -83.53125
            [z] => -30.8125
            [population] => 6544826
            [is_populated] => 1
            [government_id] => 144
            [government] => Patronage
            [allegiance_id] => 2
            [allegiance] => Empire
            [state_id] => 16
            [state] => Boom
            [security_id] => 32
            [security] => Medium
            [primary_economy_id] => 4
            [primary_economy] => Industrial
            [power] => Arissa Lavigny-Duval
            [power_state] => Exploited
            [power_state_id] => 32
            [needs_permit] => 
            [updated_at] => 1497306026
            [simbad_ref] => 
            [controlling_minor_faction_id] => 31816
            [controlling_minor_faction] => 1 G. Caeli Empire League
            [reserve_type_id] => 3
            [reserve_type] => Common
            [minor_faction_presences] => Array
                (
                    [0] => Array
                        (
                            [minor_faction_id] => 31816
                            [state_id] => 16
                            [influence] => 46.953
                            [state] => Boom
                        )

                    [1] => Array
                        (
                            [minor_faction_id] => 54517
                            [state_id] => 80
                            [influence] => 6.3936
                            [state] => None
                        )

                    [2] => Array
                        (
                            [minor_faction_id] => 54518
                            [state_id] => 80
                            [influence] => 7.0929
                            [state] => None
                        )

                    [3] => Array
                        (
                            [minor_faction_id] => 54519
                            [state_id] => 37
                            [influence] => 6.6933
                            [state] => Famine
                        )

                    [4] => Array
                        (
                            [minor_faction_id] => 74917
                            [state_id] => 80
                            [influence] => 16.5834
                            [state] => None
                        )

                    [5] => Array
                        (
                            [minor_faction_id] => 40897
                            [state_id] => 16
                            [influence] => 9.7902
                            [state] => Boom
                        )

                    [6] => Array
                        (
                            [minor_faction_id] => 4017
                            [state_id] => 80
                            [influence] => 6.4935
                            [state] => None
                        )

                )

        )

    [1] => Array
        (
            [id] => 2
            [edsm_id] => 3979
            [name] => 1 Geminorum
            [x] => 19.78125
            [y] => 3.5625
            [z] => -153.8125
            [population] => 141727
            [is_populated] => 1
            [government_id] => 96
            [government] => Democracy
            [allegiance_id] => 3
            [allegiance] => Federation
            [state_id] => 80
            [state] => None
            [security_id] => 32
            [security] => Medium
            [primary_economy_id] => 8
            [primary_economy] => Terraforming
            [power] => 
            [power_state] => 
            [power_state_id] => 
            [needs_permit] => 
            [updated_at] => 1496927549
            [simbad_ref] => 1 Geminorum
            [controlling_minor_faction_id] => 56677
            [controlling_minor_faction] => 1 Geminorum Liberals
            [reserve_type_id] => 1
            [reserve_type] => Pristine
            [minor_faction_presences] => Array
                (
                    [0] => Array
                        (
                            [minor_faction_id] => 56677
                            [state_id] => 80
                            [influence] => 62.4625
                            [state] => None
                        )

                    [1] => Array
                        (
                            [minor_faction_id] => 56678
                            [state_id] => 80
                            [influence] => 3.3033
                            [state] => None
                        )

                    [2] => Array
                        (
                            [minor_faction_id] => 56679
                            [state_id] => 80
                            [influence] => 3.003
                            [state] => None
                        )

                    [3] => Array
                        (
                            [minor_faction_id] => 56680
                            [state_id] => 73
                            [influence] => 7.6076
                            [state] => War
                        )

                    [4] => Array
                        (
                            [minor_faction_id] => 56681
                            [state_id] => 72
                            [influence] => 1.8018
                            [state] => Outbreak
                        )

                    [5] => Array
                        (
                            [minor_faction_id] => 26454
                            [state_id] => 80
                            [influence] => 13.5135
                            [state] => None
                        )

                    [6] => Array
                        (
                            [minor_faction_id] => 3106
                            [state_id] => 73
                            [influence] => 8.3083
                            [state] => War
                        )

                )
         )

Thanks for reading and fly safe o7 !
 
Last edited:
Back
Top Bottom