Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/GetEvent
- Data i czas:
- 02/08/12 13:01:17 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/GetEvent
v1 v2 89 89 $client->__setSoapHeaders($header); 90 90 91 $evntid = 5678; 92 $event = array(); 91 93 94 try { 95 $event = $client->getEvent($evntid); 96 var_dump($event); 97 } catch(SoapFault $fault) { 98 var_dump($fault); 99 100 if ($fault->faultcode < 100) { 101 trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 102 } 103 } 92 104 93 105 ?>