巴扎黑2017-04-10 15:31:34
比如你代码的布局是这样的:
/login.php (Controller,调用Model,输出View)
/include/functions.php (Model,系统函数)
/include/phpmailer.php (邮件发送库)
/include/htmlpurifier.php (XSS过滤库)
/themes/default/login.php (View)
/themes/default/functions.php (Model,主题函数)
你可以把整个代码布局看做是一个框架.而include下的phpmailer和htmlpurifier则是两个工具库,你把它们包含进来就可以使用.