檢查檔案
file_exists($file);
檢查資料夾
is_dir($dir);
輸出md5
md5($file;
輸出字串到檔案,如果檔案不存在自動則自動建立
file_put_contents($file, $outputcontent);
從檔案讀內容
file_get_contents($file);
字串中是否有正規表示式的格式
preg_match('regexp',$string);
用正規表示式替換字串中的相應部分
preg_replace('/regexp/',$replacestring,$string);
/ / 模式
() 分組
* 0個或多個以上
+ 乙個或多個以上
. 任意字串
[a-za-z0-9_] 包含a-z或a-z或0-9或下劃線的字串 簡寫為 [\w]
商城專案實戰28 內容管理
請求的url content query list 響應的資料格式 easyuiresult service public classcontentserviceimplimplementscontentservice 引數 categoryid 響應的資料格式 taotaoresult 建立一可以...
知識管理 內容管理 文件管理 專案文件管理
事情的起因有點偶然,阿杜和我聊起系統的時候,說我們的系統現在開發的還可以,就暢想了一下能否有乙個桌面文件管理系統,問起原因,主要是感覺很多人不會管理自己的硬碟,不會管理自己的文件。我聽了也是感覺一振奮。但總還是感覺這個太大了,而且規則太過於複雜,複雜到你都不能設想有什麼規則。於是我聯絡其小董曾經的文...
Lumen企業站內容管理實戰 文章列表
文章的新增 我們還沒有建立文章的資料表,那麼我們使用資料遷移生成一張文章資料表,老規矩,命令行走起。php artisan make migration create articles table新增字段 use illuminate database migrations migration us...