Viper007Bond

Untitled

Aug 30th, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. // Real code
  2.  
  3. if ( 'Las Vegas' == $location && time() - 24 * 3600 < $marriedtime ) {
  4.     annulment();
  5. } else {
  6.     $bachelor = false;
  7. }
  8.  
  9.  
  10. // Less useful code but easier to understand
  11.  
  12. if ( 'Las Vegas' == $location && $twentyfour_hours_ago < $marriedtime ) {
  13.     annulment();
  14. } else {
  15.     $bachelor = false;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment