开发者

Keyword BOGUS in php

开发者 https://www.devze.com 2023-01-30 11:51 出处:网络
I\'m wondering what the word \"BOGUS\" means in the following object. I\'m running a script on the command line, sending a object back over SOAP. I expect back:

I'm wondering what the word "BOGUS" means in the following object.

I'm running a script on the command line, sending a object back over SOAP. I expect back:

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

But the first time I ran it, I got this back:

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.


"BOGUS" doesn't mean amything to PHP. It would appear to be what was in the response returned by your SOAP request.

Presumably the SOAP server didn't like your input that one time.


Maybe the soap service is referring to this bogus


BOGUS in php means nothing.

Most likely someone on the other end was having fun. Probably it's some debugging data that you accidently caught.

0

精彩评论

暂无评论...
验证码 换一张
取 消