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 CheckPOP3($server, $id, $passwd, $port = 110) | |
| { | |
| //若任一欄位為空白則無效 | |
| if (empty($server) || empty($id) || empty($passwd)) | |
| return false; | |
| // connect to POP3 Server | |
| $fs = fsockopen ($server, $port, &$errno, &$errstr, 5); | |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings] | |
| "UseSystemColours"=dword:00000000 | |
| "TryPalette"=dword:00000000 | |
| "ANSIColour"=dword:00000001 | |
| "Xterm256Colour"=dword:00000001 | |
| "BoldAsColour"=dword:00000001 | |
| "Colour0"="211,215,207" | |
| "Colour1"="238,238,236" |