This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "zipCode": "10100", | |
| "subDistrictList": [ | |
| { | |
| "subDistrictId": "100801", | |
| "districtId": "1008", | |
| "provinceId": "10", | |
| "subDistrictName": "ป้อมปราบ" |
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
| stream { | |
| server { | |
| listen 4343 ssl; | |
| ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
| ssl_ciphers AES128-SHA:AES256-SHA:RC4-SHA:DES-CBC3-SHA:RC4-MD5; | |
| ssl_certificate /path/to/cert.pem; | |
| ssl_certificate_key /path/to/cert.key; | |
| ssl_session_cache shared:SSL:10m; | |
| ssl_session_timeout 10m; |
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 convertHashtags($str){ | |
| $regex = "/#+([a-zA-Z0-9_]+)/"; | |
| $str = preg_replace($regex, '<a href="hashtag.php?tag=$1">$0</a>', $str); | |
| return($str); | |
| } | |
| $string = "I am #UberSilly and #MegaPlayful online"; | |
| $string = convertHashtags($string); | |
| echo $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
| version: '2' | |
| services: | |
| zabbix-db: | |
| image: zabbix/zabbix-db-mariadb | |
| volumes: | |
| - zabbix-db-storage:/var/lib/mysql | |
| - backups:/backups | |
| - /etc/localtime:/etc/localtime:ro | |
| environment: | |
| - MARIADB_USER=zabbix |
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 | |
| /** | |
| * Description of ArraytoCSV | |
| * | |
| * @author Haroon Abbasi | |
| */ | |
| class ArraytoCSV { |