casnerano/amqp-topic-match

用于匹配路由键到AMQP风格主题模式的实用工具。

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

This package is auto-updated.

Last update: 2024-09-29 05:50:05 UTC


README

用于匹配路由键到AMQP风格主题模式的实用工具。

用法

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