Php Kelimeler sahte

0 Cevap php

Ben kelime "sahte" aşağıdaki nesne ne anlama geldiğini merak ediyorum.

Ben SOAP üzerinden geri bir nesne gönderme, komut satırında bir komut dosyası çalıştırıyorum. Geri bekliyoruz:

object(stdClass)#2 (2) {
  ["distance"]=>
  string(5) "13726"
  ["time"]=>
  string(3) "622"
}

Ama ben koştum ilk kez, ben geri aldım:

object(stdClass)#2 (2) {
  ["distance"]=>
  object(stdClass)#3 (1) {
    ["BOGUS"]=>
    string(5) "13726"
  }
  ["time"]=>
  object(stdClass)#4 (1) {
    ["BOGUS"]=>
    string(3) "622"
  }
}

This only happened once, I can't duplicate it. But I'm intrigued and wondering if anyone knows what it means. Thanks.

0 Cevap