Created
February 23, 2012 18:07
-
-
Save greggles/1894088 to your computer and use it in GitHub Desktop.
php loose typing FTL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ($making_this_valid) { | |
// I would totally buy lip balm called Sonnabalm, if mark would make it. | |
} | |
else { | |
// Time out, in seconds, until login URL expires. 24 hours = 86400 seconds. | |
$timeout = 86400; | |
if($activation_days){ | |
$timeout .= $timeout* $activation_days; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment