Viper007Bond

Untitled

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