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 | |
| if (!is_file('filtered-savefile.php')) { | |
| die('Unable to get filtered data, please run save-file.php first.'); | |
| } | |
| require 'filtered-savefile.php'; | |
| // https://steamdb.info/app/816340/history/ |
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 | |
| function printDebug($var) | |
| { | |
| echo '<pre>' . print_r($var, true) . '</pre>' . PHP_EOL; | |
| } | |
| /** |
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 | |
| function getTimezones(): array | |
| { | |
| $timezones = \DateTimeZone::listIdentifiers(); | |
| $options = []; | |
| $lastRegion = ''; | |
| if (is_array($timezones)) { | |
| foreach ($timezones as $key => $timezone) { | |
| $DateTimeZone = new \DateTimeZone($timezone); |
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 | |
| echo '<meta charset="utf-8">' . PHP_EOL; | |
| /*for ($i = 0; $i <= 255; $i++) { | |
| $string = chr($i); | |
| echo $i . ' => '; | |
| echo iconv('tis-620', 'utf-8//IGNORE', $string); |
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
| <!--demo1-max-concurrent-wait-all.html--> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>XHR multi concurrent connection</title> | |
| <style> | |
| #debug { | |
| border: 3px dashed #ccc; | |
| margin: 10px 0; |
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
| /** | |
| * Antibot JS class. | |
| */ | |
| class Antibot { | |
| /** | |
| * Setup honeypot form group. |
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 | |
| if (!function_exists('str_contains')) { | |
| /** | |
| * Determine if a string contains a given substring | |
| * | |
| * @link https://www.php.net/manual/en/function.str-contains.php PHP `str_contains` original document. | |
| * @param string $haystack The string to search in. | |
| * @param string $needle The substring to search for in the `haystack`. | |
| * @return bool Returns `true` if `needle` is in `haystack`, `false` otherwise. |
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
| /** | |
| * YouTube URL. | |
| * | |
| * @author Vee W. | |
| */ | |
| class YouTubeURL { | |
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
| <!doctype html> | |
| <html lang="th"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>ความช่วยเหลือ & สนับสนุน</title> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> | |
| <link rel="stylesheet" href="../assets/css/support-style.css"> | |
| </head> |
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
| /** | |
| * Encryption class for encrypt/decrypt that works between programming languages. | |
| * | |
| * @author Vee Winch. | |
| * @link https://stackoverflow.com/questions/41222162/encrypt-in-php-openssl-and-decrypt-in-javascript-cryptojs Reference. | |
| * @link https://github.com/brix/crypto-js/releases crypto-js.js can be download from here. | |
| */ | |
| class Encryption { |
OlderNewer