我有一个这样的字符串[tubelist dijfisj, ijdsifjad, ajkdfksd, sdjfkdf]
,我想将它们分成两个###URL###
和###URL2###
.
这是我到目前为止得到的代码
function xyz_plugin_callback($match)
{
$tag_parts = explode(",", rtrim($match[0], "]"));
$output = YOUX_TARGET;
$output = str_replace("###URL###", $tag_parts[1], $output);
$output = str_replace("###URL2###", $tag_parts[2], $output);
}
$match
是我传入的变量。