一些常用的備忘

2021-06-26 08:20:54 字數 379 閱讀 7599

php相關:

1.編譯php時出現undefined reference to `libiconv_open'錯誤。

解決方案:

make zend_extra_libs='-liconv'

make install

2.php的編譯引數

mysql相關:

1.group_concat()函式的使用。

group_concat([distinct] 要連線的字段 [order by asc/desc 排序字段] [separator '分隔符'])

2.ifnull()的使用

ifnull(expr1,expr2),如果expr1不是null,ifnull()返回expr1,否則它返回expr2。

JSTL一些備忘

1 tagsupport與bodytagsupport的區別 tagsupport與bodytagsupport的區別主要是標籤處理類是否需要與標籤體互動,如果不需要互動的就用tagsupport,否則如果不需要互動就用bodytagsupport。互動就是標籤處理類是否要讀取標籤體的內容和改變標籤...

一些 命令備忘

set ansi nulls on go set quoted identifier on go 是什麼意思?這些是 sql 92 設定語句,使 sql server 2000 2005 遵從 sql 92 規則。當 set quoted identifier 為 on 時,識別符號可以由雙引號分隔...

git一些備忘

git上傳命令 進入dos介面在專案根目錄路徑下 檢視檔案狀態 git status 在專案目錄下 git add 繼續 git commit m 上傳描述 繼續 git push 本地分支管理 檢視所有分支 git branch a 當前分支與目標分支合併 git merge 目標分支 刪除分支 ...