"create object in extbase extension from a php standard class" Code Answer

4

there's a small bug in your code i think (assuming it's defined in a name space) you should have:

$ws = new soapclient($webservice, $parametros);

the leading tells php to load soapclient from the global namespace rather than looking in yours (namespacemynamecontroller).

By Jason L. on January 1 2022

Answers related to “create object in extbase extension from a php standard class”

Only authorized users can answer the Search term. Please sign in first, or register a free account.