我有这个字符串:tag:domain.com,2012-10-12:feed/channel/id/335
我试图从这个字符串中获取最后一个数字到一个变量中。此字符串中的日期也是动态的,但我不需要在变量中使用它。
这是我的代码:
$string = "tag:domain.com,2012-10-12:feed/channel/id/335";
preg_match('/tag\:domain\.com,|\d+|-|\d+|-|\d+|\:feed\/channel\/id\/|\d+/', $string, $matches);
$last_digits = ???
也许有更简单的方法可以做到这一点?