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: 3100187 |
Download: 233 |
Latest Downloads
?Horror Beat Phase Maker
?Himalayan Children
?Zebra AI
?Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
?Fantasy Aquarium
?Girls Frontline
?Wings of Stars
24 HoursReading Leaderboard
- 1 Another BIG AI from China! LongCat-Flash Chat 560B - Analytics Vidhya
- 2 How to create a presentation from a Word outline
- 3 Solutions for HTTP Error 502 Bad Gateway
- 4 How to use the find command effectively in CentOS
- 5 What to do when your computer gets the wrong IP address from the router?
- 6 What is a type assertion in Golang
- 7 Go language interface slicing conversion: memory layout and type system analysis
- 8 How to merge shapes in a PPT? An advanced tutorial for creating custom shapes in your PPT
- 9 How to create a shallow copy vs a deep copy of an object in Java?
- 10 What is the difference between object and embed tags in html?
- 11 How to use Bootstrap collapse for an FAQ
- 12 With censorship swirling, devs of polarizing anime RPG Blue Archive say Steam delay "was unrelated to the game's content" and there were "no modifications or censorship of the content s
- 13 How to add music to an entire PPT? A tutorial for adding background audio to your PPT
- 14 How to install Docker on CentOS
- 15 How to fix Stardew Valley error 'System.IO.FileNotFoundException' for game files
Latest Tutorials
-
- Go language practical GraphQL
- 4056 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 5363 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 3441 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3939 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

Related recommendations


Popular Recommendations

