bestlong 怕失憶筆記

當健忘由隨機逐漸趨向常態時,作筆記是非常必要的

Entries Tagged ‘PHP’

當 PHP 想透過 RS232 下命令

在 Windows 環境下

// Use this code to write directly to the COM1 serial port
// First, you want to set the mode of the port. You need to set
// it only once; it will remain the same until you reboot.
// Note: the backticks on the following line will execute the
// DOS ‘mode’ command from within PHP
`mode com1: BAUD=9600 PARITY=N data=8 stop=1 xon=off`;
$fp = fopen (“COM1:”, “w+”);
if (!$fp) {
echo “Uh-oh. Port not opened.”;
} else {
$e = chr(27);
$string = $e . “A” . $e . “H300”;
$string .= $e . “V100” . $e . “XL1SATO”;
$string .= $e . “Q1” . $e . “Z”;
echo $string;
fputs ($fp, $string );
fclose ($fp);
}
?>

有機會測試看看。

Comments (2)

[PHP]讓下載的URL連結不會被直接開啟而是顯示儲存對話框

方法一:
$downloadfile=”somefile.txt”;
header(“Content-disposition: attachment; filename=$downloadfile”);
header(“Content-Type: application/force-download”);

方法二:

Leave a Comment

PHP 好料

有許多的文章,不過都是英文的

http://www.melonfire.com/community/columns/trog/archives.php

http://www.devshed.com/c/b/PHP/

Leave a Comment

WebCalendar language translation: Holo-Big5

國際化的軟體系統都會提供語系檔來讓熱心的使用者來支援翻譯,而 WebCalendar 也是其中一套。中文化有正體(繁體)語系、簡體語系都可說司空見慣,不過這可還有一個 Holo-Big5 語系檔(河洛語系檔),其中對英文的翻譯可就很令人會心一笑。以下節錄部份翻譯內容讓各位看官感覺一下:

Yes: 好
No: Mai
Allow public access: 允準公眾 access
Are you sure you want to delete this entry?: 你敢確定 beh 刪除這個記事?
Sun: 禮拜
Mon: 拜一
Tue: 拜二
Wed: 拜三
Thu: 拜四
Fri: 拜五
Sat: 拜六
Access public calendar: 入去公眾行事曆
Back to My Calendar: 轉去我 e 行事曆

以上翻譯自己念起來感覺很有趣也真的很傳神。也很佩服這些熱心人士的努力。

參考網站:WebCalendar

Leave a Comment

[PHP] Web Page No Cache

設計動態網頁一定需要避免被瀏覽器 Cache 網頁。在 PHP 程式當中加入此一函數並且在適當位置呼叫執行即可。

function send_no_cache_header () {
header ( “Expires: Mon, 26 Jul 1997 05:00:00 GMT” );
header ( “Last-Modified: ” . gmdate ( “D, d M Y H:i:s” ) . ” GMT” );
header ( “Cache-Control: no-store, no-cache, must-revalidate” );
header ( “Cache-Control: post-check=0, pre-check=0”, false );
header ( “Pragma: no-cache” );
}

Leave a Comment

  • 工商服務

    廣告讀取中...
  • 近期留言

  • 標籤

  • 彙整