php 中文日期转时间戳,php日期转时间戳,指定日期转换成时间戳
时间: 2023-09-10 21:08:08 浏览: 371
在 PHP 中,可以使用 strtotime() 函数将日期字符串转换为时间戳。具体的使用方法如下:
1. 中文日期字符串转时间戳:
```php
$date_str = '2021年6月1日';
$timestamp = strtotime($date_str);
echo $timestamp; // 输出 1622505600(2021-06-01 的时间戳)
```
2. 指定日期字符串转时间戳:
```php
$date_str = '2021-06-01';
$timestamp = strtotime($date_str);
echo $timestamp; // 输出 1622505600(2021-06-01 的时间戳)
```
需要注意的是,strtotime() 函数对于不同格式的日期字符串的处理方式可能会有所不同,因此在使用时需要注意格式的正确性。
相关问题
php 日期转换时间戳
在 PHP 中,可以使用 `strtotime()` 函数将字符串日期转换为时间戳。该函数可以识别常见的日期格式,例如 `Y-m-d H:i:s`、`Y/m/d` 等。它的语法如下:
```php
strtotime(string $datetime, int $now = time()): int|false
```
其中,`$datetime` 是要转换的日期字符串,`$now` 是可选参数,表示用于计算相对时间的时间戳,默认值为当前时间。如果转换成功,则返回对应的时间戳,否则返回 `false`。
例如,将一个字符串日期转换为时间戳,可以这样写:
```php
$datetime = '2022-01-01 00:00:00';
$timestamp = strtotime($datetime);
echo $timestamp;
```
输出结果为:
```
1640995200
```
表示该日期对应的时间戳为 `1640995200`。
mysql 日期转换时间戳
可以使用UNIX_TIMESTAMP函数将日期转换为时间戳,例如:
SELECT UNIX_TIMESTAMP('2021-07-01 12:00:00');
这将返回一个整数,表示2021年7月1日12:00:00的时间戳。
阅读全文