Ben döndürülen dizi patlamaya denedim ve sadece göstermek istemiyor. Açıkçası ben yanlış bir şey yapıyorum. Burada sorun patlayan yaşıyorum bit için kodudur.
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;
}
Çıktı
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
)
)
The only data I want to see in output on index.php is;
HERE (which comes from [value] in [0] in the entries array)
home (which comes from [value] in [1] in the entries array)
Ben class_client.php içinde patlayabilir ve geri index.php yeni dizi (en aza indirmek için / index.php içindeki kodu gizlemek) gibi değerleri döndürebilir eğer ayrıca tercih ederim.
Teşekkür ederiz!