Thinkphp6安裝遇到的坑

2021-10-03 14:34:13 字數 624 閱讀 9017

今天打算重寫一下之前3.2的專案,根據最新的tp6版本。

然後我們就可以建立自己的專案了。composer create-project topthink/think tp

但是就這一句就出現了問題,提示「content-length mismatch, received 235895 bytes out of the expected 1921445」

明顯是配置檔案的問題了,進過查資料,這個是composer配置檔案快取大小的問題,解決方法可以修改composer配置檔案,或者執行命令列composer config --global cache-files-maxsize 1024mib

第乙個問題解決。

接下來就繼續建立專案,就出現了這個提示。file 「./composer.json」 cannot be found in the current directory。

這個是我粗心,建立專案時在資料夾www中,建立了tp專案資料夾後,還要命令列進入tp資料夾中cd tp。

最後執行composer config repo.packagist composer

執行php think run 就可以顯示tp6安裝完成了。

ThinkPHP(6) 模板技術

判斷比較標籤 區間標籤 三元運算子 php 在如下圖所示目錄中建立html 然後在index控制器的index方法中,呼叫模板 那麼當你訪問 index index時就會顯示index.html。如果你不想要模板和方法同名,你可以在display方法中跟上模板名稱即可。如下圖 兩種方式賦值 clas...

thinkphp6陣列分頁

一 因為有複雜的資料統計,需要組陣列,這時候使用tp6的分頁會有問題,於是改為陣列分頁的方式,將以前tp3的分頁拿過來改了一下,話不多說上 引入tp3分頁源 為了和tp6的區別不會太明顯,修改了源 放入tp6 vendor topthink framework src think 下 修改詳情 1 ...

thinkphp6開發步驟記錄

1 安裝php study 有php需要的環境 2 配置環境變數 path下新增 d phpstudy pro extensions php php7.3.4nts 3 在www資料夾下 composer create project topthink think tp 6.0.dev 5 使用檢視...