SOAP
SOAP is a messaging protocol specification for exchanging structured
information in the implementation of web services in computer networks.
Its purpose is to provide extensibility, neutrality, verbosity and independence.
SOAP
SOAP is a messaging protocol specification for exchanging structured
information in the implementation of web services in computer networks.
Its purpose is to provide extensibility, neutrality, verbosity and independence.
soap
<?php
try{
$soapclient = new SoapClient('http://www.holidaywebservice.com/HolidayService_v2/HolidayService2.asmx?wsdl');
$param=array('countryCode'=>'Scotland','year'=>'2018');
$response =$soapclient->GetHolidaysForYear($param);
var_dump($response);
echo '<br><br><br>';
$array = json_decode(json_encode($response), true);
print_r($array);
echo '<br><br><br>';
echo '<br><br><br>';
foreach($array as $item) {
echo '<pre>'; var_dump($item);
}
}catch(Exception $e){
echo $e->getMessage();
}
?>Copy
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us