0

I'm using PHP. I have an object that has a mobile phone as identity claim property. So my object looks like {'http:schemas.cmlsoap.org/ws/2005/05/dentity/claims/mobilephone': 1231231}. What's the easiest way to get that property value?

I tried using curly bracket {} to access that property value, but no good.

Mayank Patel
  • 3,868
  • 10
  • 36
  • 59

1 Answers1

0

I ended up using get_object_vars and then accessing it as an array.