This file contains hidden or 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
| App::error(function(\Illuminate\Session\TokenMismatchException $exception) | |
| { | |
| return Redirect::back()->withErrors('Your session has expired. Please try again.'); | |
| }); |
This file contains hidden or 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
| // Make sure to use the decimal fraction of a second in the examples below | |
| // Came across issues in Safari when they weren't used, see http://www.w3.org/TR/NOTE-datetime for more info | |
| // September 10th 2014, 5pm GMT | |
| new Date('2014-09-10T17:00:00.000').getTime() | |
| // September 10th 2014, 5pm ET | |
| new Date('2014-09-10T17:00:00.000-04:00').getTime() |
This file contains hidden or 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 | |
| // Generates a string of random bytes of the provided number (7 in the example below) and then converts that binary to hexadecimal | |
| // The hexadecimal conversion doubles the string size so the final result in the example below will be 14 characters long. | |
| echo bin2hex(openssl_random_pseudo_bytes(7)); |
This file contains hidden or 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
| dd(DB::getQueryLog()); |
This file contains hidden or 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
| SELECT if( TIMEDIFF('2014-12-11 11:00:00','2014-12-11 11:39:30') < 0, 'older','newer') |
OlderNewer