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

Popular posts from this blog

routing - AngularJS State management ->load multiple states in one page -

python - GRASS parser() error -

json - Gson().fromJson(jsonResult, Myobject.class) return values in 0's -