1

返された配列を分解しようとしましたが、表示したくありません。明らかに、私は何か間違ったことをしています。これが私が爆発するのに苦労しているビットのコードです。

index.php

include "class_client.php";
$client->set('place', 'home');
$client->placeLookup();
$client->screen($client->response()); //want to replace this to print the selected exploded data as shown at the bottom of this question

class_client.php

private $data = array();
private $response = NULL;

public function set($key, $value) {
$this->data[$key] = $value;
return $this;
}

private function get($key) {
return $this->data[$key];
}

public function response() {
return $this->response;
}

public function placeLookup() {
$this->response = $this->srv()->placeLookup(array('place' => $this->get('place')));
return $this;
}

出力

stdClass Object
(
    [return] => stdClass Object
        (
            [fields] => stdClass Object
                (
                    [entries] => Array
                        (
                            [0] => stdClass Object
                                (
                                    [key] => place.status
                                    [value] => HERE
                                )

                            [1] => stdClass Object
                                (
                                    [key] => place.name
                                    [value] => home
                                )

                        )

                )

            [operation] => place.lookup
            [success] => TRUE
        )

)

index.phpの出力に表示したいデータは次のとおりです。

HERE(entries配列の[0]の[value]から取得)
home(entries配列の[1]の[value]から取得)

class_client.php内で展開し、値を新しい配列としてindex.phpに戻す(index.php内のコードを最小化/非表示にする)ことができれば、それも望ましいでしょう。

ありがとうございました!!

4

1 に答える 1

1

responsePHP 5.3 以降を使用していると仮定すると、メソッドを次のように置き換えることができます。

public function response() {
    return array_map(function($a) {
        return $a->value;
    }, $this->response->return->fields->entries);
}

それ以外の場合は、次を試してください。

public function response() {
    return array_map(array($this, 'getValue'), $this->response->return->fields->entries);
}

public function getValue($obj) {
    return $obj->value;
}

編集:あなたの新しい index.php:

include "class_client.php";
$client->set('place', 'home');
$client->placeLookup();
list($status, $name) = $client->response();
$client->screen('Status: '.$status.', Name: '.$name);
于 2011-01-09T09:43:16.367 に答える