Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do this, but it's not working:

$date  = "on" date('l, F jS') "at" date('g:i:s A');

so that it will output:

on Day, Month 00th, at 0:00 PM  

(^ current date)

share|improve this question

1 Answer

up vote 6 down vote accepted

Use the string concatenation operator:

$date  = "on " . date('l, F jS') . ", at " . date('g:i:s A');
share|improve this answer
1  
Perfect, thanks! – eveo Mar 10 '12 at 1:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.