PHP is a widely used programming language that can be used for web development, scripting, command line scripting, and more. ThinkPHP is an open source web application framework based on PHP, which allows developers to build web applications more conveniently and quickly. This article will introduce how to install ThinkPHP5 through the command line.
- Installing PHP
First you need to ensure that the PHP environment has been installed locally. If it is not installed, you can install it through the following command:
$ sudo apt-get install php
Ubuntu is used here For example, other systems may differ.
- Install Composer
Composer is a commonly used dependency management tool in PHP, which allows users to more conveniently manage dependent libraries in PHP projects.
Composer can be installed through the following command:
$ curl -sS https://getcomposer.org/installer | php $ sudo mv composer.phar /usr/local/bin/composer
The curl tool is used here to download the Composer installation script, rename it and move it to the /usr/local/bin directory. For more information about Composer, see the official documentation: https://getcomposer.org/
- Download ThinkPHP5
Via Composer To download and install ThinkPHP5, enter the following command in the command line:
$ composer create-project topthink/think tp5 --prefer-dist
topthink/think here is the package provided by the ThinkPHP5 development team, and tp5 is the project name. Note that you may need to enter some configuration information during the installation process.
After the command is executed, a folder named tp5 will be created in the current directory, which is the root directory of the ThinkPHP5 application.
- Configuring virtual host
In order to preview the running effect in a local browser, a web server needs to be built locally so that users can enter http:/ /localhost/tp5 to access the running application.
You can configure the virtual host through the following two methods:
Method 1: Using Apache
If you have installed Apache2, you can open the virtual host through the following command Configuration:
$ sudo a2enmod rewrite $ sudo nano /etc/apache2/sites-available/000-default.conf
In the open file, find the following code block:
DocumentRoot /var/www/html
Change it to:
DocumentRoot /path/to/tp5/public
path/to/tp5 is your tp5 project the absolute path. Then add the following code at the end of the file:
<directory> Options Indexes FollowSymLinks AllowOverride All Require all granted </directory>
Save and close the file, and restart the Apache2 service:
$ sudo service apache2 restart
Method 2: Use PHP built-in web server
If you If you don't want to use Apache2, you can use PHP's built-in web server to start the virtual host. Enter the following command on the command line:
$ php -S localhost:8000 -t /path/to/tp5/public
The localhost:8000 here represents the address and port of the service listening, and /path/to/tp5/public is the absolute path of your tp5 project. Enter http://localhost:8000 in the browser to access your tp5 application.
- Test application
Now, you can access http://localhost/tp5 (or http://localhost :8000, depending on your virtual host configuration), you will see a welcome interface, indicating that tp5 has been successfully installed and run.
Next, you can try to create a controller in the Controller under the tp5 application directory app, and then visit http://localhost/tp5/Controller name/operation name, You can see the results output by your controller in the application.
Summary:
This article introduces how to install ThinkPHP5 through the command line, configure a virtual host to start the application, and briefly demonstrates how to create a controller in the application. I hope this article will be helpful to your TP5 application development.
The above is the detailed content of How to install tp5 using php command. For more information, please follow other related articles on the PHP Chinese website!

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
