current location: Home > Download > Learning resources > php e-book > DoitPHP Coding Specifications
DoitPHP Coding Specifications
Classify: Learning materials / php e-book | Release time: 2017-12-12 | visits: 3100028 |
Download: 233 |
Latest Downloads
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
24 HoursReading Leaderboard
- 1 How to Automatically Fix Column Width to Fit Your Data in Excel
- 2 How to Import Tables From the Web to Excel 365
- 3 Kingdom Come: Deliverance 2 - How To Study Faster
- 4 Kingdom Come: Deliverance 2 - Fortuna Walkthrough
- 5 How to Control Windows Update Settings to Avoid Forced Restarts
- 6 How to Use the TREND Function in Excel
- 7 This Innovative Keyboard Is Interesting, but Is It Just a Gimmick?
- 8 How to Set YouTube to Automatically Rotate When Opened on Samsung Phones
- 9 How To See Captions for Any Video You Watch on a Samsung Galaxy Phone
- 10 I Always Use Excel to Create Heat Maps: Here's How You Can Too
- 11 You Can Now Buy Microsoft Office 2024
- 12 Marvel’s Spider-Man 2 Using More Video Memory, Top Fixes to Try
- 13 Samsung Galaxy S25 Series Hands-On: Extremely Iterative, but the Ultra Is Nicer to Hold
- 14 Kingdom Come: Deliverance 2 - Max Level Cap
- 15 What Is Apple’s Enhanced Visual Search and Should You Turn It Off?
Latest Tutorials
-
- Go language practical GraphQL
- 2694 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4073 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2198 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2967 2024-03-29
Scope of application Unless otherwise specified, the following rule requirements are fully applicable to DoitPHP projects (Note: Doitphp's PHP framework file, not PHP projects developed using DoitPHP). If you like the following coding standards, you can also use them in other PHP development projects.
The Importance and Benefits of Standardization "No rules, no squares." When the development of a software project adheres to public and consistent standards, the entire team members form and maintain a consistent coding style, and the entire project document is written by one person. Each programmer's code is easy to understand for others, improving the maintainability of the code and thus reducing the maintenance cost of the software. At the same time, new participants can quickly adapt to the environment, thereby maximizing the efficiency of team development cooperation. Long-term standardized coding can also allow developers to develop good coding habits, reduce the chance of coding errors, and even develop more rigorous thinking. The purpose of "documenting" the specifications is to clarify our coding standards. We believe that standards are not the key to project success, but they can help us be more efficient in team collaboration and complete set tasks more smoothly.
PHP coding specifications and principles 1. File format 1.1. File encoding: File encoding is unified to UTF-8 (Note: non-UTF-8 BOM). 1.2. PHP code tags: Use "<?php ?>" at any time to define your PHP code. And "<? ?>" will be prohibited. For code files that only contain PHP, it is recommended to ignore the "?>" at the end of the file to prevent extra spaces or other characters from affecting the code. 1.3. Indentation rules: Use 4 spaces for indentation instead of TAB. This is already the standard in the PHP industry, and we will not "go against the trend of history." The main reason for using spaces is to make the code look neat and tidy. Because in different editors, the length of the TAB tab character is different, but the space is the same. Using TAB can solve the problem by pressing the TAB key, but using spaces requires pressing the space bar four times, which obviously affects development efficiency. At present, many editors default to a TAB occupying four spaces (how many spaces it occupies can be adjusted by the editor). If this is the case, in order to improve development efficiency, you can use TAB with confidence. This indentation specification also applies to functions, classes, logical structures, loops, etc. in JavaScript. 1.4. Code content: No extra spaces or TAB characters are allowed at the end of each line (make sure your editor saves the file in Unix format, which means lines are terminated with newlines). Except for the language pack annotation configuration file, there cannot be Chinese anywhere else. 1.5. Code comments: Files must have clear code comments, and the comment style adopts the phpDocumentor standard