米薩克
  • 首頁
  • KBtalKing Pro
  • 關於作者
  • 鍵盤
  • 滑鼠
  • 工具
  • 網站連結
  • 首頁
  • KBtalKing Pro
  • 關於作者
  • 鍵盤
  • 滑鼠
  • 工具
  • 網站連結
米薩克

Mesak 敗家、筆記、生活

分類:

程式

code

PHP

[PHP] 上傳與下載

by Mesak 2010-04-16
written by Mesak

下載 function ,google 搜尋到的 修正 IE 中文檔名會錯誤的問題

使用用法,檔名可不加,不加即為路徑檔名

dl_file("路徑","檔名")
function  dl_file($file,$fname=""){
//First, see if the file exists
if (!is_file($file)) { die("<strong>404 File not found!</strong>"); }
//Gather relevent info about file
$filename = ($fname)? $fname:basename($file);
if(strpos($_SERVER['HTTP_USER_AGENT'] ,"MSIE")){
$filename = urlencode ($filename);
}
//Gather relevent info about file
$len = filesize($file);
$file_extension = strtolower(getExtension($file));

//This will set the Content-Type to the appropriate setting for the file
switch( $file_extension ) {
case "pdf": $ctype="application/pdf"; break;
case "exe": $ctype="application/octet-stream"; break;
case "zip": $ctype="application/zip"; break;
case "doc": $ctype="application/msword"; break;
case "xls": $ctype="application/vnd.ms-excel"; break;
case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
case "gif": $ctype="image/gif"; break;
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
case "mp3": $ctype="audio/mpeg"; break;
case "wav": $ctype="audio/x-wav"; break;
case "mpeg":
case "mpg":
case "mpe": $ctype="video/mpeg"; break;
case "mov": $ctype="video/quicktime"; break;
case "avi": $ctype="video/x-msvideo"; break;
//The following are for extensions that shouldn't be downloaded (sensitive stuff, like php files)
case "php":
case "htm":
case "html":
case "txt": $ctype="application/octet-stream"; break;
default: $ctype="application/force-download";
}
//Use the switch-generated Content-Type
 &nbsp; //Force the download
header('Pragma: public');
header('Expires: 0');
header('Last-Modified: ' . gmdate('D, d M Y H:i ') . ' GMT');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header("Cache-Control: public");
header("Content-Type: $ctype");
header("Content-Description: File Transfer");
header('Content-Disposition: attachment; Filename="'.$filename.'"');
header('Content-Transfer-Encoding: binary');
header("Content-Length: ".$len);
@readfile($file);
exit;
}
繼續閱讀
2010-04-16 1 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[程式] Prism + GreaseMonkey

by Mesak 2010-04-07
written by Mesak

Prism + GreaseMonkey = N開

這不誇張呀!,真的能辦的到~

今天就來寫個 範例好了

以 grooveshark 為範例

首先 請先下載 Firefox 接著下載 PRISM

Prism 請解壓到合適的地方,你可以解壓縮到 Program files 下或是任意資料夾

接著請下載 Greasemonkey for prism

繼續閱讀
2010-04-07 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[網頁] 台灣地址 二階選單+郵遞區號

by Mesak 2010-03-29
written by Mesak

台灣地址 二階選單,為了方便未來要用到,順便作出 JQUERY 的PLUGIN

寫的很濫,有更好的寫法,請留言給我

因為只有引導寫入地址,所以沒有特別對 OPTION 指定 VALUE 值

需要設定 VALUE值的朋友 ,請自行將 city.php 的檔案修改

地區位置來源為 中華郵政全球資訊網_查詢專區_郵件業務_3+2郵遞區號查詢

還沒打算做3+2 郵遞區號,目前這樣我自己夠用了= =

結果預覽圖:

下載檔案:

city

程式碼簡介:

$("#產生區域ID").citySelect({cityTraget:"INPUT TEXT 的 ID"});
2010-03-29 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[程式] 商業大亨 Greasemonkey

by Mesak 2009-11-01
written by Mesak

最近沒事滿迷FACEBOOK的…

28號出的 商業大亨

全部以AJAX撰寫~

玩了兩天覺得他的一些訊息很煩…尤其是接日常任務的時候,煩死了

稍微寫了一個小框框幫助點擊 ~

不要的時候可以關閉 :D

要再度打開按下 開啟工具箱

如下圖:

更新拉:
新增
*常務工作
*安排秘書
*員工任務
*事件簿
*16HR活動
*批量互動

JS 下載:

ceo_online.user.js

不用的人 請上網搜尋 greasemonkey 安裝~~

2009-11-01 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[JS] JavaScript 畫折線圖

by Mesak 2008-08-04
written by Mesak

利用JavaScript 畫折線圖

功能不是很多,但是對於基本畫線還滿實用的

來源網站:
http://www.dynamicdrive.com/dynamicindex11/linegraph.htm

另外還有畫圓餅圖:
http://www.dynamicdrive.com/dynamicindex11/piegraph.htm

繼續閱讀
2008-08-04 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[JS] Calendar Picker

by Mesak 2008-07-17
written by Mesak

最近找到的一個方便的日期選擇器….

Calendar Picker

因為我愛用 Mootools ,所以這款程式也是用 Mootools 作為 framework…

官方網站如下:
http://www.electricprism.com/aeron/calendar/

繼續閱讀
2008-07-17 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
PHP

[PHP] 逐行讀入替換掉無法替換的 Enter

by Mesak 2008-07-04
written by Mesak

PHP 有個說明文件非常方便,想查什麼函式只要記得一點點就可以查找出來

前兩天我用了 逐行讀入的 程式,查找的是 file()

程式如下

$lines = file('http://www.example.com/');

// Loop through our array, show HTML source as HTML source; and line numbers too.
foreach ($lines as $line_num => $line) {
echo "Line #{$line_num} : " . htmlspecialchars($line) . "
";
}

但是讀出了之後,我想把換行刪除掉卻一直也刪不掉….

用了 str_replace() 取代  “\n”,卻一直無法取代

還用了 n2br,也無法取代掉…..

繼續閱讀
2008-07-04 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[JS] Color Picker Script

by Mesak 2008-04-28
written by Mesak

Color Picker Script
網站:http://www.flooble.com/scripts/colorpicker.php

用途:在有些時候網頁需要選取顏色的時候需要用到的script

繼續閱讀
2008-04-28 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[程式] FancyUpload

by Mesak 2008-02-02
written by Mesak

FancyUpload 是利用 Flash & JavaScript 來達到多文件上傳的功能,使用mootools 的核心組件

http://digitarald.de/project/fancyupload/

繼續閱讀
2008-02-02 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
JavaScript

[JS] mooRainbow

by Mesak 2007-11-22
written by Mesak

mooRainbow,是應用 mootools 的彩虹……

呃….不是  是利用 mootools 做出來的色彩選擇器

實在是超屌…..

官方網站如下:
http://moorainbow.woolly-sheep.net/

預覽如下:

繼續閱讀
2007-11-22 0 comment
0 FacebookTwitterPinterestTumblrRedditLINEEmail
較新文章
較舊文章

米薩克

米薩克

近期文章

  • [程式] Vibe Coding 實作小專案 LinkEveryWord
  • [教學] 利用 n8n 建立 LINE 聊天機器人
  • [開箱] IROCKS K103R 熱插拔無線機械式鍵盤
  • [開箱] IROCKS-K85R 無線機械鍵盤
  • [開箱] IROCKS K75M 銀色上蓋機械式鍵盤

彙整

  • 2025 年 9 月
  • 2025 年 6 月
  • 2025 年 3 月
  • 2024 年 4 月
  • 2023 年 10 月
  • 2023 年 9 月
  • 2023 年 8 月
  • 2023 年 2 月
  • 2023 年 1 月
  • 2022 年 11 月
  • 2022 年 7 月
  • 2022 年 5 月
  • 2022 年 3 月
  • 2022 年 2 月
  • 2021 年 12 月
  • 2021 年 11 月
  • 2021 年 10 月
  • 2021 年 7 月
  • 2021 年 6 月
  • 2021 年 4 月
  • 2021 年 3 月
  • 2021 年 2 月
  • 2020 年 12 月
  • 2020 年 11 月
  • 2020 年 10 月
  • 2020 年 9 月
  • 2020 年 8 月
  • 2020 年 7 月
  • 2020 年 6 月
  • 2020 年 5 月
  • 2020 年 4 月
  • 2020 年 3 月
  • 2020 年 2 月
  • 2020 年 1 月
  • 2019 年 12 月
  • 2019 年 11 月
  • 2019 年 10 月
  • 2019 年 9 月
  • 2019 年 8 月
  • 2019 年 7 月
  • 2019 年 6 月
  • 2019 年 5 月
  • 2019 年 4 月
  • 2019 年 3 月
  • 2019 年 2 月
  • 2019 年 1 月
  • 2018 年 12 月
  • 2018 年 11 月
  • 2018 年 9 月
  • 2018 年 8 月
  • 2018 年 7 月
  • 2018 年 6 月
  • 2018 年 5 月
  • 2018 年 4 月
  • 2018 年 3 月
  • 2018 年 2 月
  • 2018 年 1 月
  • 2017 年 12 月
  • 2017 年 11 月
  • 2017 年 10 月
  • 2017 年 9 月
  • 2017 年 8 月
  • 2017 年 6 月
  • 2017 年 4 月
  • 2017 年 3 月
  • 2017 年 2 月
  • 2017 年 1 月
  • 2016 年 12 月
  • 2016 年 11 月
  • 2016 年 10 月
  • 2016 年 9 月
  • 2016 年 8 月
  • 2016 年 7 月
  • 2016 年 6 月
  • 2016 年 5 月
  • 2016 年 4 月
  • 2016 年 3 月
  • 2016 年 1 月
  • 2015 年 12 月
  • 2015 年 11 月
  • 2015 年 10 月
  • 2015 年 9 月
  • 2015 年 8 月
  • 2015 年 7 月
  • 2015 年 6 月
  • 2015 年 5 月
  • 2015 年 4 月
  • 2015 年 3 月
  • 2015 年 2 月
  • 2015 年 1 月
  • 2014 年 12 月
  • 2014 年 11 月
  • 2014 年 10 月
  • 2014 年 9 月
  • 2014 年 8 月
  • 2014 年 7 月
  • 2014 年 6 月
  • 2014 年 5 月
  • 2014 年 4 月
  • 2014 年 3 月
  • 2014 年 2 月
  • 2014 年 1 月
  • 2013 年 12 月
  • 2013 年 11 月
  • 2013 年 9 月
  • 2013 年 8 月
  • 2013 年 7 月
  • 2013 年 6 月
  • 2013 年 5 月
  • 2013 年 4 月
  • 2013 年 3 月
  • 2013 年 2 月
  • 2013 年 1 月
  • 2012 年 12 月
  • 2012 年 11 月
  • 2012 年 10 月
  • 2012 年 9 月
  • 2012 年 8 月
  • 2012 年 7 月
  • 2012 年 6 月
  • 2012 年 5 月
  • 2012 年 4 月
  • 2012 年 3 月
  • 2012 年 2 月
  • 2012 年 1 月
  • 2011 年 12 月
  • 2011 年 11 月
  • 2011 年 10 月
  • 2011 年 9 月
  • 2011 年 8 月
  • 2011 年 7 月
  • 2011 年 6 月
  • 2011 年 5 月
  • 2011 年 4 月
  • 2011 年 3 月
  • 2011 年 2 月
  • 2010 年 11 月
  • 2010 年 10 月
  • 2010 年 9 月
  • 2010 年 7 月
  • 2010 年 4 月
  • 2010 年 3 月
  • 2009 年 11 月
  • 2008 年 12 月
  • 2008 年 10 月
  • 2008 年 9 月
  • 2008 年 8 月
  • 2008 年 7 月
  • 2008 年 6 月
  • 2008 年 4 月
  • 2008 年 3 月
  • 2008 年 2 月
  • 2008 年 1 月
  • 2007 年 12 月
  • 2007 年 11 月
  • 2007 年 10 月
  • 2007 年 9 月
  • 2007 年 8 月
  • 2007 年 7 月
  • 2007 年 6 月
  • 2007 年 5 月
  • 2007 年 4 月
  • 2007 年 3 月
  • 2007 年 2 月
  • 2007 年 1 月
  • 2006 年 12 月
  • 2006 年 11 月
  • 2006 年 10 月
  • 2006 年 9 月
  • 2006 年 8 月
  • 2006 年 7 月
  • 2006 年 6 月
  • 2006 年 5 月
  • 2006 年 3 月
  • 2006 年 2 月
  • 2006 年 1 月
  • 2005 年 12 月
  • 2005 年 11 月
  • 2005 年 10 月
  • 2005 年 9 月
  • 2005 年 8 月

分類

  • 個人配件
  • 咖啡
  • 家用主機
  • 居家
    • 家具
    • 家電
  • 工具
    • 文具
  • 影音
  • 玩具
  • 硬體
    • 3D Printer
    • 其他周邊
    • 喇叭
    • 手把
    • 手機
    • 滑鼠
    • 相機
    • 耳機
    • 鍵盤
    • 電源
  • 碎碎念念
  • 程式
    • Chrome extensions
    • JavaScript
    • PHP
    • Python
    • Vue
    • WordPress
  • 網路資訊
  • 美食
  • 軟體
  • 遊戲
  • 遊玩
  • 運動

書籤

  • 歡迎交換連結

About

Mesak

mesak

http://about.me/mesak

Contact:

Mesak Gmail

Histats:

Online:

2025 年 10 月
一二三四五六日
 12345
6789101112
13141516171819
20212223242526
2728293031 
« 9 月    
  • Facebook
  • Twitter

@2020- All Right Reserved. Designed and Developed by PenciDesign


Back To Top
米薩克
  • 首頁
  • KBtalKing Pro
  • 關於作者
  • 鍵盤
  • 滑鼠
  • 工具
  • 網站連結
@2020- All Right Reserved. Designed and Developed by PenciDesign