Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 190979 программистов и 1866 роботов. Сейчас ищут 954 программиста ...
PEAR_Remote::call
Вернуться к: PEAR_Remote
PEAR_Remote::call
PEAR_Remote::call() – Execute a server function
Synopsis
require_once 'PEAR/Remote.php';
mixed PEAR_Remote::call ( string $method , mixed $args,... )
Sends a remote procedure call to a package server and returns the result.
Parameter
- string $method
-
Name of the server method
- mixed $args,...
-
server method specific parameters
Return value
mixed - result of the executed server method
Throws
| Error code | Error value | Meaning | Solution |
|---|---|---|---|
| " |
Note
This function can not be called statically.
Вернуться к: PEAR_Remote