Can we use some other special character to separate the routing keys in a RabbitMQ topic exchange implementation. As an example can I use something like following.
##orange##lazy
here "##" is my routing key delimiter.
$string='##orange##lazy';
$pieces = explode("##", $string);
var_dump($pieces);
Sure, you can use explode function.