Home >php教程 >php手册 >一个简单的PHP框架实现方法

一个简单的PHP框架实现方法

WBOY
WBOYOriginal
2016-06-13 11:33:151071browse

   非原创,自己集合了类Apode+ DZ模板 + 封装PDO,应用过程就不用看了,和普通框架语法是一样的,看一下实现过程吧,主要学习如何去实现一个框架,等你学会扩展或在上面开发的话,学别的框架也只需要半小时了

  几个核心

  app.php

  __autoload(自动加载类)

  base.class.php

  abstract class Base {}//数据抽象

  action.class.php

  abstract class Action extends Base {}//继承类

  Action(核心加载类)

  controller.class.php

  getController(默认访问的Controller和Action)

  model.class.php

  Model(核心Model类)

  在controller中写条件时,可以用 $sqladd[title] = 'test';传数组给model

  想再扩展的话只需要在action.class.php插入相关的类就可以了

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