search
HomeBackend DevelopmentPHP Tutorial为什么大多数互联网公司自己写 PHP 框架?

是公司自己写,还是使用开源的框架。为什么做这样的选择,是基于什么考虑?本人看过很多的公司内部框架,说实话,真没开源的写的好,无论是文档还是易用性。好多人的想法是,如果让人知道公司开发的框架是用的开源框架,会被人鄙视- -。大家是否也有这样的考虑?

回复内容:

因为要有个性 事实是,他们技术总监想写个框架练练手,所以就忽悠ceo,说怎么怎么需要。基本都是这样的原因。
普通mvc框架完全没有自己写的必要,像鸟哥的yaf,phalcon这种才是需求产生的。 看过用过一些开源框架,像Yii、CakePHP、CodeIgnitor, 同时也为某个大型公司开发维护过内部的框架,简单说说我的观点:

1. 开源框架好是好,但做 PHP 开发的大多围绕项目需求走,没有需要也没有动力去学一个开源的框架,即便要使用,选择哪个框架也是个很困难的事。通常就算用了开源的框架,也只是用了其中一部分,大多没有理解框架设计的原则,一旦需要对框架做扩展时就胡乱来了;

2. 开源框架做的都是通用的需求,而企业内部往往有特殊的需求,自己做框架能够更切合实际的需求,出现 bug 改正也会比较及时。如果使用开源框架,往往要在深入理解内部原理上下不小的功夫,显然没有自己写的代码熟悉;

3. 性能偏见,某些人认为大部分框架中绕来绕去的方法调用、为解耦引入的多次层架构,对性能有影响,因而认为自己写的“简单”代码有更高的性能。这类人往往鄙视设计模式一类的东西,出来的代码当然要更混乱。 简单说,因为PHP这门语言太烂了,以至于很难写出足够好的框架。这一方面导致许多人认为自己能写得更好。另一方面,要写到足够好的,最终就非常不象PHP。所以或者觉得要么不如直接用其他语言(写的框架),或者认为这丫已然不是PHP了。


补充:

关于PHP的烂:框架本身是要提供强约束,比如分层隔离,禁止业务层访问表现层,但PHP的大量函数都在全局命名空间下,你无法禁止对这些函数的访问。归根到底,PHP本来就是设计为对于Web层的抽象。既然要写框架,则隐含前提是认为PHP自身的抽象不够好。重造一层抽象之后,整个就和传统PHP背道而驰了。从某种程度上说,PHP的哲学是反框架的。
  1. 公司有没有自己的框架其实要看公司自身的实力,PHP更多的是一些创业型的公司使用,从成本上来说不适合自己独立开发框架,因为一个良好的框架,业务,安全,性能等等都需要很长时间来考验。
  2. 当然有些小公司也会自己写框架,原因很简单自己的业务简单也不需要那么复杂的框架,借鉴一下MVC开发思想,写一个简单的框架也没有那么复杂,另外网站的性能也不是PHP这个框架所决定的,linux和websever的优化和配置以及对数据库的优化和使用都是很重要的因素。
  3. 另外关于说PHP不适合大型网站构架纯粹胡扯,不是说他不适合,而是早期的PHP不是很成熟(相对于java和c来说),而且早期的web程序员主要也是以java语言为主,后来虽然PHP技术成熟后,但他们(早期java)占据了公司的领导岗位,对以后的项目会本能的采用自己熟悉的语言和知识。PHP的劣势是:1:没有占据早期开发优势(人们一般有先入为主的思想),导致现在PHP不能成为大网站的主导语言,2:属于草根开源语言,在面临bug问题上面,只能等待或者自己做扩展,不像甲骨文可以付费解决问题
  4. 就性能而言,PHP适合快速迭代的开发模式,例如新浪微博就是采用PHP,一个良好的LAMP架构支持百万级的业务量还是相当easy的
用不用开源框架,跟被人鄙不鄙视一点关系也没有。那是个人的偏见
如果项目时间赶,而且公司又没有成熟的开发框架,那么选择开源框架就可以缩短开发周期。
如果时间允许,开发团队人员多一些,那么还是公司独立开发一套好一些。在安全性上也会比较有保证。 php比较简单且速度快,开源又免费,lamp(linux操作系统+apacheWEB服务器+mysql数据库+php)架构成熟稳定,所以很多网站采用。 大多数都是自己写的或是在开源框架上进行大规模的二次封装
原因是各公司的业务需求差别很大
嗯嗯,就是这样 看公司的项目,需要快速反应的,例如给客户做网站,用开源的会有比较多,如果是自己运营的项目,例如自有网站、或者开发自有的软件,那还是自己写比较靠谱,甚至互相结合,交错着用。。。 每个公司都想有一套属于自己的系统
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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