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 grabbing our News XML feed and outputting several fields, specifically the date, which outputs like this:

Fri, 20 May 2011 00:00:00 PDT

My question is, how can I reformat the date to this:

Friday, May 20, 2011

Here's my code:

<?php $rss = simplexml_load_file('http://news.stanford.edu/rss/index.xml'); ?>
    <h1><?php echo $rss->channel->title; ?></h1>
    <ul>
        <?php foreach($rss->channel->item as $a) { ?>
        <li>
            <a href="<?php echo $a->link;?>">
                <h3><?php echo $a->title;?></h3>
                <p><strong><?php echo $a->description; ?></strong></p>
                <p><?php echo $a->pubDate; ?></p>
            </a>
        </li>
    <?php } ?>
    <ul>
share|improve this question

1 Answer

up vote 6 down vote accepted

This should do it:

$string = strtotime('Fri, 20 May 2011 00:00:00 PDT');
echo date('l, F j, Y', $string); // Friday, May 20, 2011

So in your code:

<?php echo date('l, F j, Y', strtotime($a->pubDate));?>
share|improve this answer

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.