SAMConnection::unsubscribe

(PECL sam >= 0.1.0)

SAMConnection::unsubscribe Cancel a subscription to a specified topic

说锟斤拷

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

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.

锟斤拷锟斤拷

Example #1 Delete a subscription

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