gpt4 book ai didi

regex - 已弃用 : Function split() is deprecated. 如何重写此语句?

转载 作者:IT王子 更新时间:2023-10-29 01:20:09 25 4
gpt4 key购买 nike

我有以下语句,它在 PHP 5.3 之前使用 split function 运行良好:

list($year, $month, $day, $hour, $min, $sec) = split( '[: -]', $post_timestamp );

升级到 PHP 5.3 后,我收到弃用警告:

Deprecated: Function split() is deprecated.

我正在尝试解析格式如下的字符串:

2010-08-10 23:07:58

进入其组成部分。

最佳答案

我想你想要 preg_split .

list($year, $month, $day, $hour, $min, $sec) = preg_split('/[: -]/', $post_timestamp);

关于regex - 已弃用 : Function split() is deprecated. 如何重写此语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3453915/

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