1、判斷 物件是否為空empty(..);
2、分割函式 explode('delimiter','被分割字串'); 返回乙個陣列
3、日期函式 date('y-m-d h:m:s','時間'); date('y')獲取當前年 date('m') 月 date('d') 日
4、字串轉時間 strtotime('時間串')
5、中文亂碼處理 mb_convert_encoding('中文','gbk',"utf-8");
6、獲取陣列中的第乙個元素 $b=array_values($arr); $new=$b[0];
7、php中0和false判斷 使用 '===' 恒等判讀 其他判讀 0和false 相同
8、字串拼接 使用 「.」 eg:'.php.'
9、陣列 $arr = array('name'=>'php','age'=>'3');
10、判空函式 empty($obj);
11、遍歷foreach($arr as $k => $v){} for($i=0;$i<10;$i++){}
12、獲取陣列長度 count($arr)
13、判讀檔案目錄is_dir($dir)
14、建立檔案目錄 mkdir($dir)
15、讀取檔案fopen('filename','mode');
OA專案中學習到的SQL
1.將普通帖,精華帖和置頂帖當做常量,如下。普通帖 public static final int type normal 0 精華帖 public static final int type best 1 置頂帖 public static final int type top 2 在發帖的過程中...
在做專案中學到一些CSS知識
都是很實用的 a標籤 去掉 下劃線text decoration none background屬性 我想絕大部分元素都有這個屬性 還有 background image屬性 還有background color屬性這幾個屬性到底有什麼區別呢,我總結一下 我覺得 background包括 backg...
PHP專案中使用Elasticsearch
require composer update 2 會自動建立索引 與索引字段 索引字段 name 日誌名稱 content 日誌內容 addtime 建立時間 3 新增日誌操作 elas addsingleelastics name,content 引數 name 日誌名稱 content 日誌內...