Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16138 программистов и 1779 роботов. Сейчас ищут 1559 программистов ...
SAMConnection::unsubscribe - Cancel a subscription to a specified topic.
Вернуться к: SAM Функции
SAMConnection::unsubscribe
(PECL sam >= 0.1.0)
SAMConnection::unsubscribe — Cancel a subscription to a specified topic.
Описание
bool SAMConnection::unsubscribe
( string
$subscriptionId
[, string $targetTopic
] )The "unsubscribe" method is used to delete an existing subscription to a specified topic.
Список параметров
-
subscriptionId
-
The identifier of an existing subscription as returned by a call to the subscribe method.
Возвращаемые значения
This method returns FALSE
if an error occurs.
Примеры
Пример #1 Delete a subscription
<?php
if (!$conn->unsubscribe($subid)) {
// The unsubscribe failed!
echo "Unsubscribe failed ($conn->errno) $conn->error";
}
?>
Вернуться к: SAM Функции