I want to display date and time format something like this \"May 23 at 12:30pm\". I saw in PHP manual and found:
\"May 23 at 12:30pm\"
// Prints something like: Monda
you need to escape the a and t as both have special meaning when used as formatting options in date()
a
t
date()
echo date('M j \a\t h:i a');
See it in action