mktime can be pretty useful :

  $year  = 2001;
  $month = 6;
  $day   = 1;

  print date('l',mktime(0,0,0,$month,$day,$year));

as it creates a unix timestamp, and date() appreciates that.


Regards,
Philip


On Mon, 25 Jun 2001, Tyler Longren wrote:

> Hello,
> 
> I have something like this:
> $Month = "6";
> $Year = "2001";
> $Date = "1";
> 
> Is there any relatively simple way to get the day out of that?  For example,
> the day for 6-1-2001 would be Friday.
> 
> Thanks,
> Tyler
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to