2019年4月14日 星期日
2019年4月10日 星期三
過濾重複的字詞
sample
id name
1 AA
2 BB
3 CC
4 CC
5 DD
---------------------------------------------
select distinct name from sample
用distinct過濾輸出結果是:
name
AA
BB
CC
DD
id name
1 AA
2 BB
3 CC
4 CC
5 DD
---------------------------------------------
select distinct name from sample
用distinct過濾輸出結果是:
name
AA
BB
CC
DD
Format unixtime
轉換 unixtime,ex. 1416561157 -> 2014-11-21 17:12:37
from_unixtime(1416561157)
2019年4月9日 星期二
解決PHP輸出UTF-8輸出成CSV亂碼問題
2019年1月9日 星期三
JQuery select 操作
移除特定option
$('#Id option[value=6]').remove();
移除select內的所有option
$('#select option').remove();
select加option
$("#selectList").append(new Option("option text", "value"));
select readonly
$("#select").attr('disabled', true);