Hi,I try to get modified date in my PDF which has many comments and that comments show the modified date something like 06/10/2011 09:40:04 by using Adobe Reader.
Here is my code:
$Dates = $text->getDate();
echo $Dates->GetYear(); // Show 2011
echo $Dates->GetMonth(); // Show empty string
echo $Dates->GetDay(); // Show empty string
echo $Dates->GetHour(); // Show empty string
echo $Dates->GetMinute(); // Show empty string
echo $Dates->GetSecond(); // Show empty stringDo i miss something?
Please help!