返された配列を分解しようとしましたが、表示したくありません。明らかに、私は何か間違ったことをしています。これが私が爆発するのに苦労しているビットのコードです。
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内のコードを最小化/非表示にする)ことができれば、それも望ましいでしょう。
ありがとうございました!!