使用 preg_split() 将日期拆分为其组成部分:
<?php
$date = "1970-01-01 00:00:00";
$pattern = "/[-\s:]/";
$components = preg_split($pattern, $date);
print_r($components);
?>
亲自试一试 »
这个preg_split()
函数使用正则表达式的匹配作为分隔符将字符串分解为数组。
preg_split(
pattern, string, limit, flags)
Parameter | Description |
---|---|
pattern | Required. A regular expression determining what to use as a separator |
string | Required. The string that is being split |
limit | Optional. Defaults to -1, meaning unlimited. Limits the number of elements that the returned array can have. If the limit is reached before all of the separators have been found, the rest of the string will be put into the last element of the array |
flags | Optional. These flags provide options to change the returned array:
|
返回值: | 返回一个子字符串数组,其中每个项目对应于由正则表达式的匹配项分隔的输入字符串的一部分 |
---|---|
PHP 版本: | 4+ |
使用 PREG_SPLIT_DELIM_CAPTURE 标志:
<?php
$date = "1970-01-01 00:00:00";
$pattern = "/([-\s:])/";
$components = preg_split($pattern, $date, -1,
PREG_SPLIT_DELIM_CAPTURE);
print_r($components);
?>
亲自试一试 »
使用 PREG_SPLIT_OFFSET_CAPTURE 标志:
<?php
$date = "1970-01-01";
$pattern = "/-/";
$components = preg_split($pattern, $date, -1,
PREG_SPLIT_OFFSET_CAPTURE);
print_r($components);
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!