安裝tp6:`composer create-project topthink/think demo`
啟用多應用模式:`composer require topthink/think-multi-app`
啟動內置服務:`php think run` 定制端口:`php think run -H tp.com -p 80`
查看當前版本:`php think version`
自動生成應用(需啟用多應用模式):`php think build demo`
創建類庫文件(多應用):`php think make:controller index@Demo`
創建類庫文件(單應用):`php think make:controller Demo`
安裝視圖驅動:`composer require topthink/think-view`