<?php $str = ''; preg_match_all('!【(.+?)】!',$str,$rows); $result = array_unique($rows[1]); $result = implode(',',$result); var_dump($result);