Home > Backend Development > PHP Tutorial > 如何区分php 中 model 和 module

如何区分php 中 model 和 module

WBOY
Release: 2016-06-06 20:47:27
Original
2204 people have browsed it

能否简单介绍下是如何区分的 谢谢.

回复内容:

能否简单介绍下是如何区分的 谢谢.

Model 一般译为『模型』,是指数据库中的数据,在源代码中的体现。

Model 也就是 MVC 中的 M, 也是 ORM 的一种体现。

比如通常数据库中每个表对应代码中的一个类:

<code>CREATE TABLE `test` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `content` text NULL,
  `time` datetime NOT NULL
  PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;

class TestModel {
    public $id;
    public $content;
    public $time;
}
</code>
Copy after login

数据库中的每条记录对应 Model 类的一个实例:

<code>$test = DB::find("test", ["id" => 123]);
print $test->content;
</code>
Copy after login

Module 一般译为『模块』,PHP 在语言层面没有明确的模块的概念,一般就是可以理解为程序的一个部分叫一个模块,比如一个论坛有帖子模块,用户模块等等。
另外有些 PHP 的框架会定义特别的,模块的概念。

model是模型,module是模块。

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template