I have a SoapClient instance generated for a WSDL file. All except one of the method invocations require the username and the password to be passed id.
Is there any way of currying the method calls so that I can omit the username and password?
|
|
I have a SoapClient instance generated for a WSDL file. All except one of the method invocations require the username and the password to be passed id. Is there any way of currying the method calls so that I can omit the username and password?
|
||||
|
|
|
As of php 5.3 you can store an anonymous function in a variable. This anonymous function can call the "original" function with some predefined parameters.
edit: You can also use a closure to parametrise the creation of the anonymous function
edit2: This also works with objects
But the other suggestions using __call() and a wrapper class may be better if you want to "enhance" a complete class. |
||||||
|
|
|
Although a not very good solution, you could write a basic wrapper class that used PHPs magic methods (Specifically __call) to call the actual function but append the user name and password to the argument list. Basic example:
|
|||
|
|
|
PHP doesn't have currying per se, but you can do something like that in several ways. In your specific case, something like this may work:
Although here's a more general solution for currying in PHP >= 5.3:
|
||
|
|