search
HomeBackend DevelopmentPHP TutorialRelated content about thinkphp base class
Related content about thinkphp base classJun 15, 2018 pm 01:52 PM
databasetemplate engine

ThinkPHP base class library

The class library is the core part of ThinkPHP, and ThinkPHP manages all system class libraries together through the concept of base class library. The core base class library includes basic classes and common tool classes necessary to complete the universal development of the framework.

The base class library is located in the Lib/Think directory under the ThinkPHP system directory and consists of the following parts:

  1. Core: Core class library package

  2. Db: Database class library package

  3. Exception: Exception handling class library package

  4. Template: Built-in template engine Class library package

  5. Util: System tool class library package

Core core class library

Core core class library includes the following Class file (directory):

  1. Think.class.php: System base class

  2. App.class.php: Application class, execution Application Management

  3. Action.class.php: Controller base class

  4. Model.class.php: Model base class

  5. Model/AdvModel.class.php: Advanced model class

  6. Model/RelationModel.class.php: Relation model class

  7. Model/ViewModel.class.php: View model class

  8. Log.class.php: Log processing class

  9. View.class .php: View output class

Db database class library

Db core class library includes the following class files (directories):

  1. Db.class.php: Database middle layer implementation class

  2. Driver/DbMysql.class.php: Mysql database driver class

  3. Driver /DbMysqli.class.php:Mysqli database driver class

  4. ##Driver/DbPdo.class.php:PDO database driver class

  5. Driver/DbPgsql .class.php:Pgsql database driver class

  6. ##Driver/DbSqlite.class.php:Sqlite database driver class
  7. ##Driver/DbOracle.class .php:Oracle database driver class
  8. Driver/DbMssql.class.php:Mssql database driver class
  9. Driver/DbIbase.class.php :Ibase database driver class
  10. There are different database driver classes for different databases in the Driver directory, and then through the Db.class.php database middle layer to implement class processing, it is displayed in ThinkPHP What users have in front of them is a unified database operation model.
Exception exception handling class library

Exception exception handling class library package contains only one class file: ThinkException.class.php system exception base class.

Template Built-in template engine class library

Template Built-in template engine class library includes the following class files (directories):.

ThinkTemplate.class.php: Built-in template engine class
  1. TagLib.class.php: Tag library base class
  2. TagLib/TagLibCx.class.php:CX tag library parsing class
  3. TagLib/TagLibHtml.class.php:HTML tag library parsing class
  4. Util system tool library package
Util system tool class library package provides some basic tools in system development, including:

Behavior .class.php: Behavior extension base class
  1. Cache.class.php: Cache management class
  2. Cookie.class.php: Cookie management Class
  3. Debug.class.php: System debugging class
  4. Dispatcher.class.php: URL parsing, routing and dispatch management class
  5. HtmlCache.class.php: Static cache class
  6. Session.class.php: Session management class
  7. Widget.class.php: Plug-in application class
  8. Cache/: Various types of cache class file directories, including: file cache class, Sqlite cache class, Apachenote cache class, Memcache cache class , Xcache cache class, database type cache class, etc.
  9. Template/: Template engine parsing class directory, including: EaseTemplate template engine parsing class, TemplateLite template engine parsing class, Smart template engine parsing class, Smarty template engine parsing class, Think template engine parsing class

ThinkPHP extension class library

ThinkPHP official website provides a lot of additional base class library extensions. These extension class libraries must be placed in the ORG under the ThinkPHP system directory/Lib directory. Or managed within the Com class library package.

For the class library that needs to be added to the extended class library package, you can directly copy the class library file with the path to the extended class library management directory and then use it. For example, if you want to use Util/Page.class.php paging extension class library, go directly to the extension class library management directory to form Lib/ORG/Util/Page.class.php.

You need to use the import command to import the extended class library before it can be used. For details, please refer to this section "ThinkPHP import class library import".

Application Class Library

Application class library refers to the class library that is defined or used in the project. The application class library directory is located in the Lib directory under the project directory.

The above is an introduction to the core of ThinkPHP - class library. Understanding the ThinkPHP class library will help us understand the hierarchy and working principles of ThinkPHP. When necessary, referring to the source code of these class libraries will also help solve the problem.

This article introduces the relevant content about thinkphp base class. For more related content, please pay attention to the php Chinese website.

Related recommendations:

ThinkPHP user login registration related code cases

About thinkphp5 database operations

thinkphp distributed database detailed explanation

The above is the detailed content of Related content about thinkphp base class. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
数据库系统的构成包括哪些数据库系统的构成包括哪些Jul 15, 2022 am 11:58 AM

数据库系统由4个部分构成:1、数据库,是指长期存储在计算机内的,有组织,可共享的数据的集合;2、硬件,是指构成计算机系统的各种物理设备,包括存储所需的外部设备;3、软件,包括操作系统、数据库管理系统及应用程序;4、人员,包括系统分析员和数据库设计人员、应用程序员(负责编写使用数据库的应用程序)、最终用户(利用接口或查询语言访问数据库)、数据库管理员(负责数据库的总体信息控制)。

数据库的什么是指数据的正确性和相容性数据库的什么是指数据的正确性和相容性Jul 04, 2022 pm 04:59 PM

数据库的“完整性”是指数据的正确性和相容性。完整性是指数据库中数据在逻辑上的一致性、正确性、有效性和相容性。完整性对于数据库系统的重要性:1、数据库完整性约束能够防止合法用户使用数据库时向数据库中添加不合语义的数据;2、合理的数据库完整性设计,能够同时兼顾数据库的完整性和系统的效能;3、完善的数据库完整性有助于尽早发现应用软件的错误。

PHP编程中有哪些常见的模板引擎?PHP编程中有哪些常见的模板引擎?Jun 12, 2023 am 09:50 AM

最近几年,PHP编程中的模板引擎已经成为了PHP开发的重要组成部分,方便了程序员进行页面开发和管理。本文将介绍PHP编程中常见的模板引擎。SmartySmarty是一个比较常用的PHP模板引擎,它支持缓存模板、插件模块和自定义函数等一系列功能。Smarty的语法十分灵活,能够解决PHP变量与HTML标记的结合难题,使得PHP语言更适用于模板化的设计。而且,S

mysql查询慢的因素除了索引,还有什么?mysql查询慢的因素除了索引,还有什么?Jul 19, 2022 pm 08:22 PM

mysql查询为什么会慢,关于这个问题,在实际开发经常会遇到,而面试中,也是个高频题。遇到这种问题,我们一般也会想到是因为索引。那除开索引之外,还有哪些因素会导致数据库查询变慢呢?

access数据库的结构层次是什么access数据库的结构层次是什么Aug 26, 2022 pm 04:45 PM

结构层次是“数据库→数据表→记录→字段”;字段构成记录,记录构成数据表,数据表构成了数据库。数据库是一个完整的数据的记录的整体,一个数据库包含0到N个表,一个表包含0到N个字段,记录是表中的行。

学习使用Golang模板引擎:在Golang中使用模板的基础指南学习使用Golang模板引擎:在Golang中使用模板的基础指南Jan 20, 2024 am 10:13 AM

Golang模板引擎入门指南:如何在Golang中使用模板,需要具体代码示例简介:模板引擎是一种能将数据和模板进行组合并生成HTML、文本或其他格式文档的工具。在Golang中,我们可以使用内置的模板包(html/template)来实现模板引擎的功能。本文将详细介绍如何在Golang中使用模板引擎,并提供具体的代码示例。一、模板引擎的基本概念在了解如何使用

ThinkPHP6模板引擎使用指南:打造精美的前端界面ThinkPHP6模板引擎使用指南:打造精美的前端界面Aug 26, 2023 pm 11:09 PM

ThinkPHP6模板引擎使用指南:打造精美的前端界面引言:随着Web应用程序的发展,前端界面的设计和开发变得愈发重要。作为一个开发人员,我们需要使用一个强大的模板引擎来帮助我们创建和管理前端界面。ThinkPHP6的模板引擎正是满足这一需求的强大工具。本文将介绍如何使用ThinkPHP6模板引擎来打造精美的前端界面。第一部分:安装ThinkPHP6模板引擎

如何在Fat-Free框架中使用模板引擎Blade?如何在Fat-Free框架中使用模板引擎Blade?Jun 03, 2023 pm 08:40 PM

Fat-Free框架是一个轻量级的PHP框架,旨在提供简单而灵活的工具来构建Web应用程序。它包含许多有用的功能,例如路由、数据库访问、缓存等。在Fat-Free框架中,使用Blade模板引擎可以帮助我们更方便地管理和渲染模板。Blade是Laravel框架中的模板引擎,它提供了强大的语法和模板继承功能。在本文中,我将演示如何在Fat-Free框架中使用Bl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

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.