


thinkphp5 - I want to learn ThinkPHP, should I learn 3.2 or 5.0?
I have nearly a year of programming experience in Codeigniter. I want to learn ThinkPHP and found that a 5.0 version has appeared
But 5.0 is said to be born for API everywhere, and I am mainly engaged in web development
From an employment perspective, should I study 3.2 or 5.0?
I hope you guys can give me some advice
This question has been closed, reason: Unable to obtain exact results
Reply content:
I have nearly a year of programming experience in Codeigniter. I want to learn ThinkPHP and found that a 5.0 version has appeared
But 5.0 is said to be born for API everywhere, and I am mainly engaged in web development
From an employment perspective, should I study 3.2 or 5.0?
I hope you guys can give me some advice
If you are obsessed with TP, it is recommended to start with 3.2.
3.2 is used more often and there is more information online. It can also be used as an API.
As for 5, I think that for 3.2, an "API" gimmick was proposed, but the basic framework will not change significantly. I have no discomfort from 3.2 to 5.0. There is no stable version of 5.0 now, and the production environment should be very small. .
Comprehensive recommendation 3.2.
In fact, if you broaden your horizons, there are also YII2, laravel, and yaf. . . A lot of frameworks are no better than sticking to TP.
In terms of learning value, YII2 and laravel should be higher. Very eye-catching about new features and new design patterns.
TP is not object-oriented enough and feels a bit like functional programming.
As for documentation, if you have CI experience, you should be able to read the code. The documentation for YII2 and laravel is placed in the code and can be read together. You need some English proficiency.
TP is pretty good in terms of Chinese documentation, and Chinese people can get started quickly.
You should learn more about it before making the final decision.
enjoy~
If you have CI experience, don’t learn thinkphp. It’s just a framework of the same level. Instead, learn a full-stack framework to make enterprise-level applications. Symfony, laravel, phalcon, any one of yii will do. Improve a few levels after learning.
I suggest you learn laravel
.
It is recommended that you use yaf
5.0, the API is very convenient to use later
Since the poster said it is from the perspective of employment, let’s talk about our practical application projects.
The latest version of the TP framework currently used by the company in the production environment is 3.2.2, but most of them still retain the versions before 3.2. (The cost of changing the framework is too high. From the perspective of stability, as long as there are no major problems with this version, it will not be updated)
The official said that "the official version of 5.0 is planned to be released in the first half of this year." I tried to use 5.0 as the framework of a new project, but in actual use, I found that there are still many problems, such as:
Some subtle structures have not yet been finalized (an issue was raised to the official on Github, but the official did not explain why such code logic appeared, so this judgment is made);
5.0 still has a lot of small bugs, and some small bugs have been fixed by the official during the use process;
Without the use of previous versions of TP as a basis, it is difficult to adapt to the situation of 5.0 and there are not many documents or articles introducing related issues.
From the official Github graphs, we can see that the current code submissions are very frequent, and 5.0 is in rapid iteration, so it is not worth learning in depth at this time.
So overall 5.0 is not stable, and the possibility that the company will use it in production environment projects is very low. Based on the employment cost-effectiveness, it is recommended to choose 3.2.
3.2, 5.0 is still an unstable beta version, you can still use it if you want to
From a learning perspective, 3.2 is relatively stable, has a lot of information, and has rich community discussions, so it is more suitable. But since you already have experience with codeigniter, why learn thinkphp. As everyone recommends, learning Laravel is very helpful for design patterns, coding styles, system design, etc. It is also widely used, and the tutorials and materials are extremely rich (this year's Laracon is about to open). In addition, it is also good to learn phalcon. It is written in C and the code is very meaningful to learn. Of course, symfony 2 and yii are also good (better than learning thinkphp).
Currently only 3.2
The official has clearly stated that 5.0 is a beta version and is not recommended for use in projects. It will only be recommended after the official version is released
I suggest you learn laravel, it is really a good framework
First of all, if you want to get started as soon as possible, it is recommended to start with 3.2 and then 5.0, because many old projects are still developed based on 3.2 and need to be maintained. The cost of learning 5.0 after learning 3.2 is not very high. There are even identical codes in many places.

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
