-3

can i ask ? . I have class cURL POST into a website ( API Integration ) , and if i post with class. The result is (i use print_r) :

stdClass Object
(
 [order] => 200029
)
1

How to grab [order] value?

1 Answers1

0

You can use:

$yourVar->order;
Allan Pereira
  • 2,572
  • 4
  • 21
  • 28