search
HomeBackend DevelopmentPHP Tutorial2017 laravel vs thinkphp comparison

2017 laravel vs thinkphp comparison

Jun 26, 2017 pm 08:35 PM
phpthinkphpCompare

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!

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
How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

Simple Guide: Sending Email with PHP ScriptSimple Guide: Sending Email with PHP ScriptMay 12, 2025 am 12:02 AM

PHPisusedforsendingemailsduetoitsbuilt-inmail()functionandsupportivelibrarieslikePHPMailerandSwiftMailer.1)Usethemail()functionforbasicemails,butithaslimitations.2)EmployPHPMailerforadvancedfeatureslikeHTMLemailsandattachments.3)Improvedeliverability

Dependency Injection in PHP: A Simple ExplanationDependency Injection in PHP: A Simple ExplanationMay 10, 2025 am 12:08 AM

DependencyInjection(DI)inPHPenhancescodeflexibilityandtestabilitybydecouplingclassesfromtheirdependencies.1)UseConstructorInjectiontopassdependenciesviaconstructors,ensuringfullinitialization.2)EmploySetterInjectionforpost-creationdependencychanges,t

PHP DI Container Comparison: Which One to Choose?PHP DI Container Comparison: Which One to Choose?May 10, 2025 am 12:07 AM

Pimple is recommended for simple projects, Symfony's DependencyInjection is recommended for complex projects. 1)Pimple is suitable for small projects because of its simplicity and flexibility. 2) Symfony's DependencyInjection is suitable for large projects because of its powerful capabilities. When choosing, project size, performance requirements and learning curve need to be taken into account.

PHP Dependency Injection: What, Why, and How?PHP Dependency Injection: What, Why, and How?May 10, 2025 am 12:06 AM

DependencyInjection(DI)inPHPisadesignpatternwhereclassdependenciesarepassedtoitratherthancreatedinternally,enhancingcodemodularityandtestability.Itimprovessoftwarequalityby:1)Enhancingtestabilitythrougheasydependencymocking,2)Increasingflexibilitybya

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment