我有这个DateTime格式。
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
<executions>
<execution>
<id>test-compile</id>
<configuration>
<classPathElements>
<classPathElement>somejar.jar</classPathElement>
</classPathElements>
</configuration>
</execution>
</executions>
</plugin>
我想将其转换为可以插入MysQL的UTC日期时间 有人可以告诉你如何用碳来做这件事吗?
答案 0 :(得分:0)
设置你的时区并添加这样的代码。希望这对你有帮助。
$timestamp = '2016-11-22 12:04 PM';
$date = Carbon::createFromFormat('Y-m-d H:i A', $timestamp, 'America/New_York');
$date->setTimezone('UTC');