Çok düzeyli nesneden değerini elde etmek için PHP basit yolu

3 Cevap php

Ben nesnenin her düzeyde döngü olabilir biliyorum, ama bu daha basit bir yaklaşım istiyorum.

QueryResult Object
(
    [queryLocator] => 
    [done] => 1
    [records] => Array
        (
            [0] => SObject Object
                (
                    [type] => type_1
                    [fields] => 
                    [sobjects] => Array
                        (
                            [0] => SObject Object
                                (
                                    [type] => type_2
                                    [fields] => 
                                    [sobjects] => Array
                                        (
                                            [0] => SObject Object
                                                (
                                                    [type] => type_3
                                                    [fields] => 
                                                    [sobjects] => Array
                                                        (
                                                            [0] => SObject Object
                                                                (
                                                                    [type] => type_4
                                                                    [fields] => 
                                                                    [sobjects] => Array
                                                                        (
                                                                            [0] => SObject Object
                                                                                (
                                                                                    [type] => type_5
                                                                                    [fields] => 
                                                                                    [Id] => 12345_I_need_this
                                                                                )

                                                                        )

                                                                )

                                                        )

                                                )

                                        )

                                )

                        )

                )

        )

    [size] => 1
)

Ben nasıl basit bir çözüm bu alabilir, type_5 bu kimliği değer gerekir.

Düşünmeniz gereken bazı diğer noktalar:

  • Ben dizilerin nesne gidecek kadar büyük veya ne kadar derin bilmiyorum edecek, daha fazla veya daha az 5 olabilir

I have heard about recursion but havn't found anything I think I could use that keeps it simple. Maybe some better tutorials would help me out. If I did know in what part of the array of object the value I neede was in could I just call it directly? something like: $object[5]->id ???

3 Cevap

Burada nasıl özyineleme işleri (genellikle) olduğunu

function recursiveFunctionName( input ) // returns value;
{
    //Do something to input to make it new_input

    if( isSomethingAccomplished )
    {
        return value;
    }
    else
    {
        return recursiveFunctionName( new_input );
    }
}

Sen bir giriş ile başlar, ve geçerli bir çıkış dönebilirsiniz kadar kendisini aramak için devam işlev söyleyin. Senin durumunda, bunu bu şekilde yapabiliriz:

function getID( SObject $so )
{
    // equates to isSomethingAccomplished...  You have found the value
    // you want returned, so pass that out.
    if( $so->id )
    {
        return $so->id;
    }
    else
    {
        // otherwise, this will return the value from the next level, 
        // pass that out.
        # SEE BELOW FOR ONE MORE NOTE HERE.
        return getID( $so->sobjects[ 0 ] );
    }
}

Eğer sobjects için bir Array kullanarak bu yana Şimdi, aşağıdaki ile, AŞAĞIYA BAKINIZ # aşağıdaki satırı değiştirmek isteyebilirsiniz:

$objs  = $so->sobjects;
$count = count( $objs );

// Iterate through all of its children, testing each of the child nodes.
// (You're actually using iteration and recursion in combination here).
for( $i = 0; $i < $count; $i++ )
{
    $curr = getID( $objs[ $i ] );

    // This is the same test as above.
    if( $curr )
    {
        return $curr;
    }
}

Çok basit:

class SObject{
/*...*/

    public getId(){
        if(isset($this->Id)){
            return $this->Id;
        } else {
            return $this->sobjects[0]->getId();
        }
    }
}

Ve çağrı

$id = $query_obj->getId();

Bir XML olarak bu dökümü ve bu yapı üzerinde queryes çok yapmak gerekiyorsa üzerinde XPath kullanın