PHP, how to write high-quality code
How to write excellent PHP code? Now I can basically achieve all my needs, but the code is very messy and the logic is not very good. How can I improve it?
Reply content:
How to write excellent PHP code? Now I can basically achieve all my needs, but the code is very messy and the logic is not very good. How can I improve it?
I think the word high quality should be quantified into indicators such as readability, scalability, security, coupling, operating efficiency, etc. Only in this way can it be followed in an orderly manner, and writing good code will not become a metaphysics.
Readability: Personally, I think this is particularly important. Can your variable names and method names be clearly understood by others? Are the naming consistent and not lax?
Extensibility: The vitality of an extensible program is powerful. High-quality code must have high scalability characteristics. PHP itself can be expanded. It has very good scalability and is very convenient. This is well known . The best editor
vim
also has unparalleled scalability.Security: This importance is self-evident. Without security, no matter how elegant the code is, it has no meaning.
Coupling degree: The logic of the program should not be overly coupled, so that one move affects the whole body. Low coupling degree can make the code reusability very high.
Operating efficiency: The best martial arts in the world can only be fast. An excellent algorithm can make the running efficiency of the program several orders of magnitude faster.
Data structure + algorithm = program
is still not an empty talk today.
To sum up, writing high-quality code is never easy. You can take off more wheels and see how others build it.
Want to see more excellent codes? I wonder if there are any books on this subject?
http://www.php-fig.org/psr/
Passed all tests: and requirements first
Eliminate duplication as much as possible: high cohesion and low coupling
Express as clearly as possible: readability
Fewer code elements: constants, variables, functions, classes, packages... all belong to code elements, reducing complexity
The importance of the above four principles decreases in order
The above is quoted from simple design principles
Core: high cohesion and loose coupling (single responsibility), external dependencies, entity versus abstract programming, abstraction is layering
Don’t use too many if statements in one method. If there are too many, just split it into several methods. Dismantle as many methods as possible that can be reused.
The most important prerequisite for writing high-quality code is that you need to know what "high-quality PHP code" is?
High-quality code Many github PHP projects can tell you, you just need to take the time to read. Of course, your reading here is not just to read it line by line, but what you think about this piece of code, whether its structural design is good or not, and whether the internal design ideas can be improved. By slowly thinking about yourself in this way, you will greatly improve yourself.
My recommendation is the yii2 framework, such as this simple logger design yii2/framework/log
You can take a look at <> to optimize code projects and logic
Strictly follow the PHP development coding standards

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
