print <<< END
Right now, the time is
END
. strftime('%c') . <<< END
but tomorrow it will be
END
. strftime('%c',time() + 86400);
Also, if you're interpolating with heredocs, make
sure to include appropriate spacing for the whole string to appear
properly. In the previous example, "Right now the
time" has to include a trailing space, and
"but tomorrow it will be" has to
include leading and trailing spaces.