php - Cakephp 3 SOAPclient -
i got script running in php , want turn in cakephp 3 http client
$strapikey = xxxxxxxxxxxx; $client = new soapclient($url); $arrresult = array(); $arrfilter[] = array('field'=>'id', 'operator'=>'bigger', 'value'=>20); $arrsort = array('field'=>'customer', 'direction'=>'asc'); $arrresult = $client->getcustomers($strapikey, $arrfilter,$arrsort,10,0); is possible cakephp 3 http client?
the built in cakephp 3 http client meant restful/pure http servers. can technically use soap, need build entire soap envelope yourself. php soapclient class best thing available interfacing soap.
so, in short, "no", rather carry on using using.
Comments
Post a Comment