thinkphp framework initialization project

thinkphp framework

 

ThinkPHP is a free open source, fast and simple object-oriented lightweight PHP development framework, which was born for agile WEB application development and simplified enterprise application development. ThinkPHP has been adhering to the simple and practical design principles since its inception, while maintaining excellent performance and minimal code, it pays more attention to ease of use. Publishing under the Apache2 open source license agreement means that you can use ThinkPHP for free, and even allow you to release/sell your applications developed based on ThinkPHP as open source or commercial products.

 Initialize a project with thinkphp below

First download composer, composer is a package management tool for PHP.

composer create-project topthink/think tp

Enter the project directory and execute the run command

 cd tp
php think run

 Enter localhost:8000, if you see the welcome page, it means the execution is successful. 

Guess you like

Origin blog.csdn.net/weixin_42815827/article/details/128490118