This morning, I was reviewing the weekly list of topics with the most comments throughout the PHP manual, and I stumbled upon the following code in the documentation for the date() function.
This code is designed to tell you the day of the week for any valid date you give it:
<?php function return_day_of_week($date){ $sy=substr($date, 0, 4); $sm=substr($date, 5, 2); $sd=substr($date, 8, 2); $date_utc=mktime(0,0,0,$sm, $sd, $sy); $today_utc=mktime(0,0,0,date("m"), date("d"), date("Y")); if($date_utc>$today_utc){ $future_date=1; $temp=$date_utc; $date_utc=$today_utc; $today_utc=$temp; } $utc_difference=$today_utc-$date_utc; $weeks_count=($utc_difference)/604800; if($weeks_count<10) $weeks_count=substr($weeks_count,...
HipHop For PHP: Who Benefits, Who Doesn’t - Brandon...
There’s been lots and lots of discussion regarding the Facebook “Hyper PHP” release of HipHop for PHP. This new technology is an in-production converter for PHP that takes PHP code,...
Community News: PHP Developers Summit 2010...
The Zend Developer Zone has posted about a PHP developers summit happening in the Philippines in partnership with Microsoft. In partnership with Microsoft Philippines, PHP User Group...
PHP Developers Summit 2010 in Partnership with...
In partnership with Microsoft Philippines, PHP User Group Philippines presents PHP Developers Summit 2010 on January 30th. We are inviting you to come and join us in this gathering of the...
1 GB SanDisk MicroSD TransFlash Memory Card (Bulk)
The MicroSD card is based on TransFlash, which was developed by SanDisk in cooperation with Motorola and is the worlds smalles flash memory card form factor.
Sound Forge 9
Sound Forge 9 is the industry standard for editing and production. Create and edit stereo and multichannel audio files with speed and precision, in the studio or in the field. The latest...
Post new comment