<?php
preg_match_all('/[exibebanner [^]/', 'abcdef [xyz^abc]', $matches);

foreach ($matches[0] as $key=>$value) {
    echo "- '{$value}'". PHP_EOL;
}
