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 set infinite execution time in a PHP script
How to find the 2nd most common item in an array?
How to block an IP range based on CIDR in Apache with .htaccess
How to block IP addresses in Apache by using regular expressions (regex) in .htaccess
How to block IPv6 IP addresses in .htaccess
How to force SSL in Apache's .htaccess?
How to set the timezone to UTC in .htaccess
Push vs Pop vs Shift vs Unshift
How to find an item by Primary Key in Eloquent, or throw a ModelNotFoundException exception if it isn't found?
What is the null coalescing operator in PHP7?