作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我从数据库中获取创建日期并以正确格式显示的方法
function showDateTime($student_id, $datetime)
{
$time_zone_app = DB::table('students')->where('id', $student_id_id)->value('time_zone');
$zone_data = explode(':', $time_zone_app);
$time_zone['hours'] = $zone_data[0];
$time_zone['minutes'] = $zone_data[1];
$carbon = new Carbon\Carbon();
$carbon->setDateTime(2012, 9, 25, 10, 26, 11);
$carbon->addHours($time_zone_data[0]);
$carbon->addHours($time_zone_data[1]);
$datetime = $carbon->toFormattedDateString();
return $datetime;
}
上面我有硬代码时间,因为我没有得到我想要的时间如果我在 $carbon = new Carbon\Carbon();
下面回显 $carbon 它给了我时间
2016-9-25 07:04:02
我想把这个时间转换成格式2016, 9, 25, 7, 4, 02
as
(年、月、日、时、分、秒)然后想把它传递给上面的 setDateTime 方法
请问我该怎么做
最佳答案
你也可以试试这个:
use Carbon\Carbon;
$now = Carbon::now();
$now->format('Y, m, d, H, i, s');
您还可以尝试以下格式。
$now->format('d-m-y H:i:s');
$now->format('d.m.y H:i:s');
关于php - 标准时间的日期时间格式方法(laravel 5.3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41340623/
根据 Android docs ,activity生命周期如下: onCreate() onStart() onResume() onPause() onStop() onDestroy() 问题是,
我有一门类(class)有很多专栏,但这个问题只需要其中三个: ---------------------------------------- | start_date | start_time
给定在同一个 Tomcat 6 上运行的两个 Web 应用程序。如果您从一个应用程序到另一个应用程序进行 http 调用,Tomcat 是否会“短路”此调用,或者它会在调用之前一直在 interweb
我是一名优秀的程序员,十分优秀!