3
我想查找字符串中「%」中的所有子字符串,但我不明白爲什麼它只能找到「id」。正則表達式找到%PHP內的所有子字符串
$test = '<img src="%get_love%" alt="%f_id%" title="%id%" />';
$token_regex_inside_tags = "/<([^>]*%([\w]+)%[^>]*)>/";
preg_match_all($token_regex_inside_tags, $test, $matches);
感謝您的詳細解釋! – coffeeak