gpt4 book ai didi

php - 使用 PHP 提取括号内的时间

转载 作者:行者123 更新时间:2023-12-02 07:31:44 27 4
gpt4 key购买 nike

这是我第一次使用修剪函数,我想获取不包括字符串左括号和右括号的时间。您能给我一些关于如何做到这一点的提示和建议吗?

$string = "Updated by Carewina Almonte  (04/02/2018 21:58:32)";     
echo trim($string, "Updated by Carewina Almonte (04/02/2018");
exit();

最佳答案

在 php 中,您可以获取此值,并且当且仅当日期和时间始终出现在字符串末尾时才有效 -

 $string = "Updated by Carewina Almonte  (04/02/2018 21:58:32)";
$time = substr($string,-9,8);
echo $time;

关于php - 使用 PHP 提取括号内的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49869392/

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