Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/GetEvents
- Data i czas:
- 02/08/12 13:06:15 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/GetEvents
v1 v2 52 52 $client->__setSoapHeaders($header); 53 53 54 $events = array(); 54 55 56 try { 57 $data = array( 58 'from__' => '2011-10-10', 59 'to____' => '2011-10-11', 60 'contid' => 123, 61 ); 62 $events = $client->getEvents($data); 63 var_dump($events); 64 } catch(SoapFault $fault) { 65 var_dump($fault); 66 67 if ($fault->faultcode < 100) { 68 trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 69 } 70 } 55 71 56 72 ?>