<?php
$date = new DateTime('2012-03-30');
$date->modify("last day of last month");
var_dump($date->format('Y-m-d')); // correctly last day of Feb
$date->setDate(2012, 1, 30);
var_dump($date->format('Y-m-d')); // incorrect date
$date->modify('2012-01-30');
var_dump($date->format('Y-m-d')); // does set correct date
Warning: DateTime::modify(): Failed to parse time string (last day of last month) at position 9 (o): The timezone could not be found in the database in /in/ATGLp on line 4
string(10) "2012-03-30"
string(10) "2012-01-30"
string(10) "2012-01-30"
Output for 5.0.0 - 5.0.5, 5.1.1 - 5.1.6
Fatal error: Class 'DateTime' not found in /in/ATGLp on line 2
Process exited with code 255.
Output for 5.1.0
Fatal error: fatal flex scanner internal error--end of buffer missed in /in/ATGLp on line 11
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Fatal error: Cannot instantiate non-existent class: datetime in /in/ATGLp on line 2
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: datetime in /in/ATGLp on line 2