Skip to content

Instantly share code, notes, and snippets.

@pH-7
Last active May 23, 2023 11:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pH-7/eb287fa5e75620c4944233c2156b9bc3 to your computer and use it in GitHub Desktop.
Save pH-7/eb287fa5e75620c4944233c2156b9bc3 to your computer and use it in GitHub Desktop.
Naming Convention - Programming

Caps, programming

  • UpperCamel case for classes. e.g., MyClass {}
  • lowerCamel case for variable names. e.g., myVar = "";
  • snake_case for Python functions and other functions delimited with underscores _ e.g., my_function();
@pH-7
Copy link
Author

pH-7 commented Mar 11, 2023

In my PHP Udemy Courses, I'm also covering those programming standard convention and consistency across your projects 🙂
https://www.udemy.com/user/pierresoria/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment