Home  >  Article  >  Backend Development  >  Which one is better, ci or thinkphp5?

Which one is better, ci or thinkphp5?

(*-*)浩
(*-*)浩Original
2019-10-12 11:12:484291browse

They are all simple and easy-to-use frameworks. However, because CI was born early, many things cannot keep up with it, and there are no updates. Comparatively, ThinkPHP is better. It was developed by Chinese people and its documents are easy to read.

Which one is better, ci or thinkphp5?

CodeIgniter is a set of small but powerful web applications for PHP website developers Development frameworks and toolkits. It provides enough freedom support to the organization, allowing developers to work more quickly. (Recommended learning: PHP video tutorial)

CodeIgniter is a simple and fast PHP MVC framework. The folks at EllisLab released CodeIgniter. After many businesses have tried out all the PHP MVC frameworks, CodeIgniter emerges as the winner, mainly because it provides enough freedom to the organization, allowing developers to work faster.

Freedom means that when using CodeIgniter, you don't have to name your database tables a certain way, nor do you have to name your models based on the tables. This makes CodeIgniter ideal for refactoring legacy PHP applications, where there may be all the weird structures that need to be ported.

CodeIgniter doesn't require a lot of code (the 1.6.2 version is only 2.8 MB, 1.3 MB of which is user documentation that can be removed), nor does it require you to plug in a huge library like PEAR. It performs equally well in PHP 4 and PHP 5, allowing you to create portable applications. Finally, you don't have to use a template engine to create views—just stick with old-school HTML and PHP.

ThinkPHP was born to simplify enterprise-level application development and agile WEB application development. was first born in early 2006. It was officially renamed ThinkPHP on New Year's Day 2007 and was released under the Apache2 open source agreement.

ThinkPHP has been adhering to the simple and practical design principle since its birth. While maintaining excellent performance and minimal code, it also focuses on ease of use. And it has many original functions and features. With the active participation of the community team, it is continuously optimized and improved in terms of ease of use, scalability and performance.

ThinkPHP is a fast, compatible and simple lightweight domestic PHP development framework. It was born in early 2006. It was originally named FCS. It was officially renamed ThinkPHP on New Year's Day in 2007. It is released under the Apache2 open source agreement and transplanted from the Struts structure. It has made improvements and improvements, and also borrowed many excellent foreign frameworks and models, using object-oriented development structure and MVC model, integrating the ideas of Struts and TagLib (tag library), RoR's ORM mapping and ActiveRecord model.

ThinkPHP can support server environments such as windows/Unix/Linux. The official version requires PHP5.0 or above. It supports MySql, PgSQL, Sqlite databases and PDO extensions. The ThinkPHP framework itself has no special module requirements. The specific application system operating environment requirements depend on the modules involved in development.

The above is the detailed content of Which one is better, ci or thinkphp5?. For more information, please follow other related articles on the PHP Chinese website!

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
Previous article:Does nginx support php?Next article:Does nginx support php?