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

apache - Cloudflare bug random 302 redirections -

java - Sql binding in Spring throws org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException -