php含中文【年月日】转时间戳

$start = '2019年1月15日';
$arr = date_parse_from_format('Y年m月d日',$start);
$time = mktime(0,0,0,$arr['month'],$arr['day'],$arr['year']);
dump($arr);
echo '对应时间戳为:'.$time;

输出结果:

array(12) {
  ["year"]=>
  int(2019)
  ["month"]=>
  int(1)
  ["day"]=>
  int(15)
  ["hour"]=>
  bool(false)
  ["minute"]=>
  bool(false)
  ["second"]=>
  bool(false)
  ["fraction"]=>
  bool(false)
  ["warning_count"]=>
  int(0)
  ["warnings"]=>
  array(0) {
  }
  ["error_count"]=>
  int(0)
  ["errors"]=>
  array(0) {
  }
  ["is_localtime"]=>
  bool(false)
}
对应时间戳为:1547481600

你可能感兴趣的:(php)