1. Import files
In order to use the functions provided by the ThinkPHP framework, we need to introduce some class libraries within the framework into our program. In ThinkPHP, we can use the following two methods to import files.
Introducing the framework default file
The framework default file is stored in the framework directory. We can introduce it in the following ways:
require_once 'framework/thinkphp.php';
This will introduce the framework default file into the current file, making it easier for us to use the functions of the framework.
Introduce specified files
Sometimes we only need to introduce specific files without having to move the entire framework into our program. In ThinkPHP, we can use the following method to import:
require_once 'path/filename.php';
The path here refers to the path where the file we need to import is located, and filename is the file name, which needs to include the file extension.
2. Set routing
In ThinkPHP, we can define routing rules to send requests to specified controllers and operations to achieve custom URLs the goal of. In ThinkPHP, we can use the following code for routing settings:
'URL_ROUTER_ON' => true, // 开启路由 'URL_ROUTE_RULES'=>array( //定义路由规则 'user/:id'=>'user/show', ),
'user/:id'=>'user/show' here means that all /user/id requests will be sent to user control The device is in show operation. For routing settings, we can use other methods such as regular expressions to make it more flexible to set routing rules.
3. Set up the database
In order to perform related operations, we need to connect to the database to develop ThinkPHP programs. In ThinkPHP, we can use the following code for database settings:
'DB_TYPE'=> 'mysql', // 数据库类型 'DB_HOST'=> 'localhost', // 服务器地址 'DB_NAME'=>'test', // 数据库名 'DB_USER'=>'root', // 用户名 'DB_PWD'=>'123456', // 密码 'DB_PORT'=>'3306', // 端口 'DB_PREFIX'=>'think_', // 数据库表前缀
where DB_TYPE represents the database type, DB_HOST represents the server address, DB_NAME represents the database name, DB_USER represents the database user name, DB_PWD represents the database password, and DB_PORT represents Database port, DB_PREFIX represents the database table prefix. We can modify the above parameters according to the actual situation.
4. Set up the template engine
Using the template engine can dynamically render data into a web page in ThinkPHP. The following code can be used in ThinkPHP for template engine settings:
'TMPL_PARSE_STRING'=>array( '__PUBLIC__'=>__ROOT__.'/Public', '__JS__'=>__ROOT__.'/Public/js', '__CSS__'=>__ROOT__.'/Public/css', '__IMG__'=>__ROOT__.'/Public/img' ),
The __PUBLIC__, __JS__, __CSS__, __IMG__ here represent the public directory, JS directory, CSS directory and image directory used in the project, we can Modify according to actual situation. The underscore __ROOT__ refers to the root directory of the project.
The above is the detailed content of What are the commonly used import settings in thinkphp?. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version
Recommended: Win version, supports code prompts!

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