40 Signs You're Still a PHP Newbie_PHP Tutorial
I would like to include this article in my "Programming Mistakes" series. Although I have been exposed to software engineering, enterprise software architecture and database design in regular university courses, I still feel the "guilt" of the following facts from time to time. Of course, they are all my subjective feelings and are oriented to Eclipse:
You are a PHP newbie, if you:
1. Can’t use tools like phpDoc to properly comment your code
2. For excellent Integrated development environments such as Zend Studio or Eclipse PDT turn a blind eye
3. Have never used any form of version control system, such as Subclipse
4. Do not adopt certain coding and naming standards, as well as common conventions, and cannot develop projects Implement during the cycle
5. Not using a unified development method
6. Not converting (or) not validating certain input or SQL query strings (Annotation: refer to PHP related functions)
7. Not before coding Plan your program thoroughly
8. Do not use test-driven development
9. Do not code and test with errors enabled (Annotation: refer to PHP function error_reporting)
10. Turn a blind eye to the benefits of debuggers
11. Don’t refactor your code
12. Don’t use MVC-like patterns to separate different levels of the program
13. Don’t know these concepts: KISS, DRY, MVC, OOP, REST
14. Instead of returning, output (echo/print) content directly in your function or class
15. Turn a blind eye to the advantages of unit testing or general testing
16. Always return hard-coded HTML, but never return pure data, string, or object
17. Always hardcode “message” and “configuration parameters”
18. Do not optimize SQL query statements
19. Do not use __autoload (Annotation: Refer to the relevant description in the PHP manual)
20. Intelligent error handling is not allowed (Translation: refer to PEAR's ErrorStack)
21. Use $_GET instead of $_POST to do destructive transfer operations
22. Don't know How to use regular expressions
23. Never heard of SQL injection or cross-site scripting
24. Simple configuration is not allowed, and the constructor of the class is not allowed to accept parameter passing and then execute the set/get method, or run Definition of constants when Make your code follow OOP
28. Don’t use smart defaults
29. No single configuration file
30. Don’t want to expose the source code of the file, but use the .inc suffix instead of .php
31. Not using the database abstraction layer
32. Can’t maintain the DRY style, that is, don’t repeat yourself. If you are always copying and pasting something, it means you have a poor design
33. Not implementing a function/class /Methods only do one thing, and they cannot be combined
34. Failed to try OOP’s strengths, such as abstract classes, interfaces, polymorphism, inheritance, and access control modifiers (Annotation: such as public, private, protected)
35. Do not use existing design patterns to optimize your program architecture design
36. Do not allow your users to define base directories when you have many files or directories
37. Pollute the namespace, For example, use common strings to name your library functions
38. Do not use table prefixes when using database tables
39. Do not use a unified template engine
40. Do not pay attention to existing PHP development frameworks and are too lazy to Explore; in fact, advanced development concepts and wonderful code are contained in it.
Translation Note: There is also a translated version of "40 Bad Habits of PHP Programmers" by Ma Yongzhan, which is concise and equipped with translator's notes.

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.

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

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

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

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