作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一组 DateTime 对象,需要在函数调用中将它们用作字符串。我试过像 $string_datetime = (string)$myDateTimeObject;
那样转换它,但这不起作用。搜索也没有结果,因为大多数人都在询问如何将字符串转换为 DateTime。
我的代码:
$start_date = new DateTime();
$end_date = new DateTime();
$end_date = $end_date->modify('+1 day');
// Add time range to request
$request['time_range'] = Array ( 'start' => $start_date,
'end' => $end_date);
当调用需要字符串的函数(这是一个 API 调用)时,我收到此错误:
Catchable fatal error: Object of class DateTime could not be converted to string
从 DateTime 对象转换/提取字符串的正确方法是什么?
最佳答案
关于php - 如何将日期时间转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10048665/
我是一名优秀的程序员,十分优秀!