I think what you need is simply something like this:

function get_day($int_day){
    $arr_day_of_week = array('1'=>'Sunday', '2'=>'Monday', '3'=>'Tuesday', 
'4'=>'Wednesday', '5'=>'Thurdsay', '6'=>'Friday', '7'=>'Saturday');
}

echo(get_day(1)); //will print Sunday


-- 
itoctopus - http://www.itoctopus.com
""Bosky, Dave"" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
How can I convert the numerical day of week to the string version?

Example, if the day of the week is 1 I would like to print out 'Sunday'.



Thanks,

Dave




**********************************************************************
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this 
message is not the intended recipient, or an employee or agent responsible 
for delivering this message to the intended recipient, you are hereby 
notified that any dissemination, distribution or copying of this 
communication is strictly prohibited.  If you have received this 
communication in error, please notify us immediately by replying to the 
message and deleting it from your computer.  Thank you.
**********************************************************************

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to