fork(1) download
  1. <?php
  2.  
  3. $response = (object) array('shopId' => 33015842,
  4. 'paymentMethod' => 'E_COMMERCE',
  5. 'contractNumber' => 1026194250,
  6. 'Nome' => 'Fabio');
  7.  
  8. $shopId = $response->shopId;
  9. $paymentMethod = $response->paymentMethod;
  10. $contractNumber = $response->contractNumber;
  11.  
  12. echo "{$shopId}\n";
  13. echo "{$paymentMethod}\n";
  14. echo "{$contractNumber}\n";
Success #stdin #stdout 0.01s 24400KB
stdin
Standard input is empty
stdout
33015842
E_COMMERCE
1026194250