For excessively paranoid client authentication.
Updated Apr 5 2019:
because this is a gist from 2011 that people stumble into and maybe you should AES instead of 3DES in the year of our lord 2019.
some other notes:
| window.addEventListener("orientationchange", function() { | |
| alert(window.orientation); | |
| //do whatever you want on orientation change here | |
| }, false); |
| <?php | |
| function recursive_array_replace($find, $replace, $array) { | |
| if (!is_array($array)) { | |
| return str_replace($find, $replace, $array); | |
| } | |
| $newArray = array(); |
| <?php | |
| /* | |
| * PHP: Recursively Backup Files & Folders to ZIP-File | |
| * MIT-License - 2012-2018 Marvin Menzerath | |
| */ | |
| // Make sure the script can handle large folders/files | |
| ini_set('max_execution_time', 600); | |
| ini_set('memory_limit', '1024M'); |