


This article brings you a summary of the advantages and disadvantages of multiple PHP frameworks. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
For a long time, what is most discussed in phper is the advantages and disadvantages of various php frameworks. The information on the Internet is also relatively scattered. Now I have collected and summarized several mainstream frameworks. Among them, I have only used Yii2, Laravel, and Yaf. , Thinkphp, these four frameworks, so most of the evaluations of various frameworks come from online information. If there are any problems, please point them out in the comments and make progress together.
1. ThinkPHP
ThinkPHP (FCS) is a lightweight medium-sized framework, which is a Chinese PHP development framework transplanted from Java's Struts structure. It uses object-oriented development structure and MVC mode, and simulates the implementation of Struts tag library. It is more user-friendly in all aspects. It is relatively easy for developers familiar with J2EE to get started, and it is suitable for beginners of PHP framework. ThinkPHP's purpose is to simplify development, improve efficiency, and be easy to expand. Its database support already includes support for MySQL, MSSQL, Sqlite, PgSQL, Oracle, and PDO. ThinkPHP has rich documentation and examples, and the framework has strong compatibility, but its functions are limited, so it is more suitable for the development of small and medium-sized projects.
Advantages
1. With the help of mature Java ideas
2. Easy to use, rich Chinese documentation; low learning cost, high community activity
3. The framework has strong compatibility, PHP4 and PHP5 are fully compatible, fully supports UTF8, etc.
4. Suitable for the development of small and medium-sized projects
5.Introducing composer package management tool from thinkphp3.2.2
Disadvantages
1. Ajax The support is not very good;
2. The directory structure is confusing, which is a little worse than that of other frameworks;
3. It is easy to get started, but difficult to learn in depth.
2. Yii
Yii is a high-performance component-based PHP framework for developing large-scale Web applications. Yii is written in strict OOP and has complete library references and comprehensive tutorials. From MVC, DAO/ActiveRecord, widgets, caching, hierarchical RBAC, web services, to theming, I18N and L10N, Yii provides almost everything needed for today's Web 2.0 application development. In fact, Yii is one of the most efficient PHP frameworks.
Advantages
1. Pure OOP
2. Used for large-scale web applications
3. The model is easy to use
4. Develop quickly and run quickly. Excellent performance and rich features
5. Use command line tools.
6. Support composer package management tool
Disadvantages:
1.Less guidance and consideration of the Model layer
2.Fewer document examples
3. Too much English
4. Requires proficiency in PHP technology and proficiency in OOP programming!
5. View is not an ideal view. The ideal view may be just html code and will not involve PHP code.
3. Laravel
Advantages
1. Laravel’s design idea is very advanced and is very suitable for applying various development models TDD, DDD and BDD
2. Supports composer package management tool
3. It integrates relatively new features of PHP, as well as various design patterns, Ioc containers, dependency injection, etc.
Disadvantages
1. Based on component-based framework, so it is relatively bloated
4. CodeIgniter
Advantages:
1.Code Igniter advocates the principle of "simplicity is beautiful". There are no fancy design patterns, no fancy object structures, everything is so simple. It only takes a few lines of code to start running, and a few more lines of code to output. It can be said to be a model of "great simplicity".
2. The configuration is simple, all configurations are configured using PHP scripts, and the execution efficiency is high;
3. It has basic routing functions and can perform routing to a certain extent;
4. Has preliminary Layout function and can create a certain level of interface appearance;
5. The database layer is well encapsulated and has basic MVC functions.
6. Fast and concise, the code is not Many, high execution performance,
7. The framework is simple, easy to use, low learning cost, and the documentation is detailed;
8. It comes with many simple and easy-to-use libraries, and the framework is suitable for small applications.
Disadvantages:
1. The implementation itself is not ideal.
2. The internal structure is too confusing. Although it is simple and easy to use, it lacks expansion capabilities.
3. Simply understand the Model layer as a database operation.
4. The framework is slightly simple and can only meet the needs of small applications, but is slightly less able to meet the needs of medium-sized applications.
Evaluation:
Generally speaking, it is worthwhile to use CodeIgniter to complete simple and fast applications. At the same time, it can construct a certain degree of layout to facilitate the reuse of templates. The data operation layer is well encapsulated, and CodeIgniter It does not use many too complex design patterns, and the execution performance and code readability are both good. As for the additional library, it is also pretty good, simple and efficient.
5. Zend Framework
Advantages:
1. A large number of new object-oriented features in PHP5 are applied: interfaces, exceptions, abstract classes, SPL, etc. The application of these things makes Zend Framework highly modular and flexible
2. Strictly follow the principles of "programming for interfaces" and "single object responsibility"
3.Officially produced, self-produced It brings a lot of libraries, and the framework itself uses a lot of design patterns to write. It is very elegant in architecture and has medium execution efficiency.
4. MVC design, relatively simple
5. It has routing function. The configuration file is relatively powerful (can handle XML and php INI)
6. It can intuitively support the Model layer in addition to database operations (stronger than CodeIgniter and CakePHP), and can easily use the Loader function to load other The newly added Class
7.Cache is very powerful and supports both front-end Cache and back-end Cache. The back-end Cache supports Memcache, APC, SQLite, files, etc.
8. The database operation function is very powerful and supports various drivers (adapters)
9. The documentation is very complete and it is very mature in the domestic community
Disadvantages:
1.MVC function The completion is relatively weak, the View layer is simply implemented (the same as not implemented), and it cannot control the front-end page very powerfully.
2. There is no automated script. To create an application, including the entry file, all must be built manually by yourself. Getting started High cost
3. For simple and small projects, because a large number of object-oriented designs are applied in the framework, higher requirements are put forward for developers, which indirectly increases the development cost of the project
Evaluation:
As an official framework, Zend Framework’s ambitions are foreseeable. It wants to squeeze out other frameworks, while encapsulating many powerful class libraries to provide one-stop framework services, and they The development team is very strong and fully capable of developing very powerful products. Therefore, it is basically certain that Zend Framework has a bright future. If more time is spent to improve the framework. Similarly, the Zend Framework architecture itself is relatively elegant, which shows that Zend officially has many experts and is relatively advanced in design concepts. Although some functions are not fully implemented, such as the View layer, automation scripts, etc., these all depend on the future. Upgrade
6. CakePHP
Advantages:
1. The framework most similar to RoR, including design method and Active Record method of database operation
2. The design level is very elegant, there is no extra library, all functions are pure frameworks, and the execution efficiency is not bad
3. The hasOne and hasMany functions of the database layer are very powerful, and are relatively suitable for complex business processing Suitable
4. Routing function, configuration difficulty is moderate
5. Automatically build scaffolding (scaffold) is very powerful, suitable for medium-sized applications
6. Basically implemented every MVC First level
7. It has the function of automatically operating command line scripts
8. The documentation is relatively complete and the learning cost is moderate
Disadvantages:
1.CakePHP is very The serious problem is that the Model is understood as a database layer operation, which seriously affects the ability to operate other than the database
2. The cache function is slightly weak
3. The configuration function is slightly weak
4. Not suitable for large-scale applications, only suitable for medium-sized applications. The learning cost is slightly higher for small applications.
Evaluation:
In general, the CakePHP framework represents the importance of the PHP framework. An era and representative of RoR, and it currently plays a very important role. Many self-written frameworks imitate the CakePHP method, which is a landmark product; CakePHP reveals RoR’s agile development method and considers database operations to be the only Model. The design idea is an excellent tool for developing rapid applications and prototypes; similarly, it is also worth choosing as a development framework for Web2.0 websites
7. Symfony
Advantages:
1. Completely implements the three layers of MVC
2. Encapsulates everything, including $POST, $GET data, exception handling, debugging functions, and data detection
3 .Includes powerful caching function
4. Automatically loads Class and can freely define various classes of your own
5. Powerful language support
6. Has many Powerful view layer operation, which can contain multiple files in a piecemeal manner
7. Very powerful configuration function, using xml configuration to control all frameworks and program running behaviors
8. Contains powerful Multi-level project and application management: Project --> Application --> Module --> Action, which can meet the needs of multiple applications under one project, and each layer can define its own class library, configuration file, and layout
9. Very powerful command line operation functions, including creating projects, building applications, building modules, refreshing cache, etc.
10. Symfony is definitely the first choice for developing large and complex projects, because it uses Symfony will greatly save development costs, and there will be no problems when multiple people collaborate. After defining the basic Class at the Project level, any module can be reused, greatly reusing code.
Disadvantages:
1. The biggest problem is that too many open source projects with different styles are used to form a framework
2. Since Mojavi and Propel themselves are quite complex, the structure of Symfony is very complicated and difficult to understand. and learning
3. The cache function cannot be controlled. It is always cached every time during development and debugging. You need to execute symfony cc, symfony rc to clear and rebuild the cache
4. The efficiency is not very high, especially The process of parsing templates and reading configuration files takes a lot of time
5. The learning cost is very high, and there is no mature community and Chinese documentation in China
Evaluation:
Symfony is definitely Enterprise-level frameworks are the only ones that can seemingly compete with the powerful frameworks in the Java field. Powerful things are naturally complicated to learn, but they are also helpful for project development. Naturally, it is recommended to use Symfony to handle complex projects. I think It is worth it, the later maintenance cost is relatively low, and the reusability is very strong. Correspondingly, if you use Symfony for more complex Internet projects, you must consider the issue of database distribution. Then you need to abandon the database operation layer that comes with Symfony and define it yourself. Of course, Symfony supports arbitrary Constructing the model layer
Overall comment:
The above frameworks have their own characteristics, and they are all open source projects. However, the projects targeted by the frameworks are different. Generally speaking:
1. Small projects: CodeIngiter
2. Medium-sized projects: CakePHP, Zend Framework, Laravel, Thinkphp
3. Large-scale heavyweight projects: Yii, Symfony, Laravel
The above divisions are not absolute. When selecting projects, you must fully consider the framework It can be customized and scalable, because each project cannot determine whether you will make changes as your needs change
The above is the detailed content of Summary of the advantages and disadvantages of multiple PHP frameworks. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
