2017 laravel vs thinkphp comparison
First of all, tp and laravel are both very goodframeworks. They have their own user groups, which in itself is the most convincing affirmation of them. .
If someone has used both laravel and tp, it would be best for him to speak.
As for those who have only used one but say the other is not good, that is basically just hearsay.
I have always used tp3, but I started using laravel recently.
So, I can only answer this question from the perspective of a novice.
Don’t talk about code, just talk about suitability.
TP’s learning cost is low, and you can find a lot of relevant wheels and information in China. Although laravel has Chinese documentation, I really have a hard time reading it.
I heard that Laravel's community is very active. In fact, TP is also very active. It has been updated for ten years. I think TP is more convincing.
From a learning perspective, laravel is more accessible for people to learn (provided you can fully master it), but there are too many programmers who have become a monk in China, not to mention most of the phpers who have come out halfway. The reason for choosing php, precisely because php is easy to get started with.
So, if you want to read through the code and learn from it, laravel obviously has greater advantages.
If you want to implement a project, reduce input and increase output, use tp.
As the friend said before, tp is about ease of use, while laravel is about showing off.
. Pretending here is not a derogatory term.
---------------------
I am just a novice, and I don’t have the right to debate the pros and cons of specific scenarios. It's in vain. I admire laravel and tp. I only know that they have made a lot of contributions to open source, and they all have their own advantages and disadvantages.
Finally, I would like to say: Thinkphp is the pride of Chinese PHP practitioners.
Lavarel is a new framework that appeared in version 5.4. It cannot run on a server with a PHP version environment lower than 5.6 because it all uses new syntax, and most domestic projects It is an old project from the past, and as a running project, it is very, very costly to tear it down and use Laravel to do it. One of the typical examples is Sina.com, which has not been revised in recent years. From our current point of view, such websites have long been eliminated. In fact, everyone's opinion of Sina is that apart from Sina Weibo, there is probably nothing left, and Sina is an old project, not to mention the revision of the backend framework. , it is impossible to change just the revision of the front desk, because a slight change will completely affect the whole body, and the boat will easily turn around. For such a big project, if a small change causes a drop in profits in the quarterly report, who will be responsible for the result? , most people in China are just hanging around and making a living, without the superior environment abroad, so many people refute me and say that domestic development technology is on par with international standards. Sorry, it really can’t be compared, because the environment does not allow it. You, can you stay away from work all day long and do research at home? It’s all about living.
Another point is that many domestic websites are made using websites like dedecms and discuz, even if they use frames I also use tp, why? The learning cost is low, this is the answer, and the big reason is because the current training courses in training classes are basically thnkphp, even if you are a startup company (domestic entrepreneurship is of course Impossible, I'm joking, for example), if you want to use lavarel, you can try to recruit people. Basically, it is difficult to recruit. Even if you can recruit, the salary will be difficult for a startup company to bear. , this problem arises. Large companies have their own frameworks, while small companies are limited to the salary cost of employees and cannot afford it. The end result is that domestic lavarel really has to wait a few years to become popular
Finally I I want to say that lavarel will definitely become popular. He started to learn from ruby python in terms of package management. This is an inevitable development trend. I believe that from now on, those domestic crash training courses will also start training lavarel. Course
The above is the detailed content of 2017 laravel vs thinkphp comparison. For more information, please follow other related articles on the PHP Chinese website!

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.
