PHP Doku:: Cancel a subscription to a specified topic. - function.samconnection-unsubscribe.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteSimple Asynchronous MessagingSAM FunktionenSAMConnection->unsubscribe

Ein Service von Reinhard Neidl - Webprogrammierung.

SAM Funktionen

<<SAMConnection->subscribe

SAMMessage->body>>

SAMConnection->unsubscribe

(PECL sam >= 0.1.0)

SAMConnection->unsubscribe Cancel a subscription to a specified topic.

Beschreibung

bool SAMConnection::unsubscribe ( string $subscriptionId [, string $targetTopic ] )

The "unsubscribe" method is used to delete an existing subscription to a specified topic.

Parameter-Liste

subscriptionId

The identifier of an existing subscription as returned by a call to the subscribe method.

Rückgabewerte

This method returns FALSE if an error occurs.

Beispiele

Beispiel #1 Delete a subscription

<?php
if (!$conn->unsubscribe($subid)) {
    
// The unsubscribe failed!
    
echo "Unsubscribe failed ($conn->errno$conn->error";
}
?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)