求助怎么写php的正则匹配
我要取出 字符串"user=asdasd; token=dwwewee; type=assdfs" 里的token值dwwewee,
php怎么写?
真的不会写。。
这样好像也不行
preg_match("/(token=)(.*?)(;|$)/i","user=asdasd; token=dwwewee; type=assdfs", $matches);
foreach ($matches as $m)
{
echo $m;echo "<br>";
}
卡纳德
9 years, 10 months ago