Drupal CMSから出てくる日付オブジェクトを取得し、1日を引いて、両方の日付を出力しようとしています。これが私が持っているものです
$date_raw = $messagenode->field_message_date[0]['value'];
print($date_raw);
//this gives me the following string: 2011-04-24T00:00:00
$date_object = date_create($date_raw);
$next_date_object = date_modify($date_object,'-1 day');
print('First Date ' . date_format($date_object,'Y-m-d'));
//this gives me the correctly formatted string '2011-04-24'
print('Next Date ' . date_format($next_date_object,'Y-m-d'));
//this gives me nothing. The output here is always blank
そのため、元の日付オブジェクトが正常に表示される理由がわかりませんが、追加の日付オブジェクトを作成し、1日を引いて変更しようとしていますが、それができないようです。出力は常に空白になります。
$date_raw = date("r");