Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16480 программистов и 1785 роботов. Сейчас ищет 1371 программист ...
TokyoTyrant::ext - Execute a remote script
Вернуться к: TokyoTyrant
TokyoTyrant::ext
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::ext — Execute a remote script
Описание
public string TokyoTyrant::ext
( string
$name
, int $options
, string $key
, string $value
)Executes a remote script extension.
Список параметров
-
name
-
Name of the function to execute
-
options
-
Either
TokyoTyrant::RDBXO_LCKREC
for record locking andTokyoTyrant::RDBXO_LCKGLB
for global locking. -
key
-
The key to pass to the function
-
value
-
The value to pass to the function
Возвращаемые значения
Returns the result of the script function
Примеры
Пример #1 TokyoTyrant::ext() example
<?php
$tt = new TokyoTyrant("localhost", 1978);
echo $tt->ext("somefunc", TokyoTyrant::RDBXO_LCKREC, "some_key", "some_value");
?>
Вернуться к: TokyoTyrant