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

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -