PHP: What is snake case?
Snake case is the way of writing words/phrases, where each word is separated by an underscore character. It is often used for variable names. For example $blog_posts is in snake case. Sometimes it is written as snake_case.
See also Camel case (e.g. $camelCaseVariable)
More...
Comments and discussion about What is snake case?
Found this interesting? Maybe you want to read some more in this series?
Or see other topics in the PHP language
Arrays
General
PHP Basics
Or see other languages/frameworks:
PHP Laravel Composer Apache CentOS and Linux Stuff WordPress General Webdev and Programming Stuff JavaScriptOr see random questions
How to do comments in Blade files?
What are the SPL Iterators in PHP?
How to Extract Query String (from a URL) Into an Associative Array in PHP
What are generators in PHP, and how do they compare to arrays?
How to disable file hotlinking in Apache with .htaccess
How to install jpegtran for Linux CentOS
How to destroy or remove a cookie in PHP
What is the difference between integration and unit tests?
How to Force www or non-www in htaccess
What is the spaceship operator (<=>) in PHP?