Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 关于写一个自己的框架的想法

关于写一个自己的框架的想法

Jun 23, 2016 pm 02:20 PM

框架 php

    做PHP也有差不多3年的时间了,最近突然冒出来一个想法,想写一个自己的框架来用,事先说一下,本人做研发工作有2年半的经验,但是一直都只是小兵而已,让我用别人的框架去写东西是可以的,但是自己写一个框架的话,真心不知道从哪儿入手了。
    哪位大神有过这个的经验啊,求一思路啊求分享啊

回复讨论(解决方案)

这个要看时间和是否需要。

鼓励楼主一下。

可以写,论坛里不少人就写过。做为一种学习研究未尝不可 从哪下手,从看别人的框架开始下手

你一直在用框架做开发?
那么自己能写框架吗?我看够呛!

原因很简单:人家把必须的流程都包装了,你只是做了两三年填空题
没有实践过整个流程,如何能写出框架?

用别人的框架,但不知道别人框架的实现流程,你能用的那么心安理得?

1.在做项目的过程中,要逐渐积累一些类库,比如数据库操作,缓存,模板引擎等等。
2.参考你最熟悉的开发框架的架构,将自己的类库整合进去,一个简单的框架就基本成型了。
3.参与已有的其他框架,将优秀的特性慢慢整合进去。
4.随着特性增加,适时进行重构。

重在积累,一个号称一天就可以写出框架的人也必然是积累了多年经验的人。

重在积累,一个号称一天就可以写出框架的人也必然是积累了多年经验的人,说得有理。。。

说的很好,以后多来狂狂

知道框架流程,你可以每一个流程找下资料,慢慢攻克。

我写了个,还没完成
https://github.com/tiyee/TiyeePHP

mark下... 令人心动的想法....

建议放弃,一般来说已经有了。

我写过一个很简单的框架,简单来说,先仿其形,再慢慢完善。

建议放弃,一般来说已经有了。
有是有了 只是想通过写这个来把自己3年来的所得总结一下 然后找准自己的定位 继续努力

你一直在用框架做开发?
那么自己能写框架吗?我看够呛!

原因很简单:人家把必须的流程都包装了,你只是做了两三年填空题
没有实践过整个流程,如何能写出框架?
你也说了 就是因为没有实践过 看过又如何 不去自己试着去写一下 怎么还是没有实践经验 

你需要甩开“框架”这个工具,完全自己完成至少三个相似的项目
按流程抽取并融合相应段的代码,作为你的框架的基础

我也来一发吧 https://github.com/eslizn/minicore

Statement of this Website
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

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 Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

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,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

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

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

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.

See all articles