版本:5.1.24 ,windows環境
報錯:
模板檔案不存在:template\index\default\index\index.html
把小寫改大寫
入口檔案配置在 根目錄下
//模板路徑 兩種方法都可以
'view_path
' => '
./template/',
'view_path
' => >env::get('
root_path
').'
./template/
',
入口檔案配置在 public下
'view_path
' => '
../template/index/default/',
'view_path
' =>env::get('
root_path
') . '
/template/index/default/
', //
輸出模板路徑:e:\wamp64\www\composer\tp51\/template/index/default/index\index.html
ThinkPHP5 1鉤子和行為
tp5.1的行為是乙個比較抽象的概念,執行的流程使用者的註冊,登入,退出登入等等都可以作為乙個行為。而不同的行為之間也具有位置共同性,比如,有些行為的作用位置在使用者註冊後,在登入之後,退出登入之後,等等有些行為的作用位置都是在應用執行前,有些行為都是在模板輸出之後,把這些行為發生作用的位置稱之為鉤...
thinkphp5 1 匯入excel檔案
public function importexcel 限制上傳 型別 ext substr strrchr files file name 1 if ext xls ext xlsx 讀取 filename files file tmp name reader iofactory createre...
ThinkPHP5 1學習 模組設計
一 目錄結構 thinkphp5.1 預設是多模組架構,也可以設定為單模組操作 手冊摘入的結構列表 多模組設計在 url 訪問時,必須指定響應的模組名,比如 public test abc eat 如果你只有 test 這乙個模組時,你可以繫結這個模組,從而省略寫法 此時,url 呼叫就變成了 pu...