PHP 8.0 New Feature
Here is the list of new function in PHP 8.01. Match - This is kind of similar to switch operation. Here is the difference comparing with switch - $condition = 1;$data = match($condition) { 1 => 'good', // this will return g
...
Read More
All we need to know about PHP
1. Some PHP closing tag information -
We can skip adding closing tag if only writing PHP code. But while writing with other languages, ex - HTML, we must need to add closing tag.
Semicolon in the last line of PHP can be omitted. For example.
...
Read More