本文介绍了PHP框架(蛋糕/ smarty):如何使用它和什么时候?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

重复



到目前为止,我一直在使用PHP进行小的调整,主要是使用WordPress。什么是PHP框架?为什么我需要它们?什么时候需要他们?



任何洞察力都会有所帮助。感谢。

解决方案

框架是由一组语言组成的有组织的代码或库,
$ b


  • 使常见任务轻松/简单

  • 创建一致的方式开发应用程序



    • 一些框架是非常限制性的(因为它是不容易做的事情,除非你做他们'框架'的方式),其他人更宽松。我发现Zend的框架是一个很好的组合,使易于使用的单个组件(例如,你可以将'Feed'库放入你现有的应用程序,而不需要重写应用程序的Zend方式),或者你可以使用Zend MVC和应用程序库为整个应用程序。



      我会远离框架是全有或全无。



      从Zend框架(重写上面,可能更完全):


      Duplicate of

      So far, I've been using PHP for small tweaks, mostly with WordPress. What are PHP frameworks? Why do I need them? WHEN do I need them?

      Any insight will be helpful. Thanks.

      解决方案

      Frameworks are organized groups of code or libraries, built on top of a language to either

      • Make Common Tasks Easy/Simple
      • Create a Consistent Way to Develop Applications

      Some frameworks are very restrictive (as in it's not easy to do things, unless you do them the 'framework' way), others are looser. I've found Zend's Framework to be a good mix of both, making easy to use single components (for example, you can drop the 'Feed' library into your existing application without needing to rewrite the application the Zend way), or you can use the Zend MVC and Application libraries to for an entire application.

      I'd stay away from frameworks that are 'all or nothing'.

      From Zend's Framework (restating the above, perhaps more completely):

      这篇关于PHP框架(蛋糕/ smarty):如何使用它和什么时候?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 18:40