Package | system.web.services |
---|---|
Inheritance | class CSoapObjectWrapper |
Source Code | framework/web/services/CWebService.php |
Property | Type | Description | Defined By |
---|---|---|---|
object | object | the service provider | CSoapObjectWrapper |
Method | Description | Defined By |
---|---|---|
__call() | PHP __call magic method. | CSoapObjectWrapper |
__construct() | Constructor. | CSoapObjectWrapper |
the service provider
public mixed __call(string $name, array $arguments)
| ||
$name | string | method name |
$arguments | array | method arguments |
{return} | mixed | method return value |
public function __call($name,$arguments)
{
return call_user_func_array(array($this->object,$name),$arguments);
}
PHP __call magic method. This method calls the service provider to execute the actual logic.
public void __construct(object $object)
| ||
$object | object | the service provider |
public function __construct($object)
{
$this->object=$object;
}
Constructor.
Signup or Login in order to comment.