我有一个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调用)时,我收到此错误:
捕获致命错误:类DateTime的对象无法转换为字符串
从DateTime对象转换/提取字符串的正确方法是什么?