I have date column and date value is set the format : DD-MON-RR HH24:MI:SS and when I execute sql script from sqldeveloper I can see the date like 16-MAR-15 20:40:47. But when I want to get this value with php :
$currentDATE=$row['DATE'];
echo gettype($row['DATE']);
echo $currentDATE;
I see the result as string16-MAR-15 How can I see full date information in php page?