gpt4 book ai didi

php - 从字符串中获取最后一位数字

转载 作者:行者123 更新时间:2023-12-04 16:44:47 26 4
gpt4 key购买 nike

我有这个字符串: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 = ???

也许有更简单的方法?

最佳答案

这应该有效。

$aParts = explode('/', $string);
$iId = end($aParts);

关于php - 从字符串中获取最后一位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12855741/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com