casnerano/amqp-topic-match

A utility for matching routing keys to AMQP-style topic patterns.

dev-master 2021-11-01 16:54 UTC

This package is auto-updated.

Last update: 2025-07-29 02:17:24 UTC


README

A utility for matching routing keys to AMQP-style topic patterns.

Usage

use \Casnerano\AMQPTopicMatch\AMQPTopicMatch;

$amqp_topic_match = new AMQPTopicMatch();

$amqp_topic_match->match("a.b.c.d", "*.b.#");    # return true
$amqp_topic_match->match("c", "#.c.#");          # return true
$amqp_topic_match->match("a.b.c.d", "*.b.c");    # return false