php echo line causes 500 internal server error -


$dt1 = datetime::createfromformat('m ds, y', $checkin);  echo($dt1);  

when add echo line receive 500 internal server error.

$dt1 object ..so cant echo it.it raise error.you need like..

echo $dt1->format('d.m.y'); 

Comments

Popular posts from this blog

ruby - How do I merge two hashes into a hash of arrays? -

java - the value of local variable is not used -