<?php
preg_match_all('/]*/', ']]] abc ]', $matches);

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