12, July 2021
Recently, usage of named construct has increased within PHP ecosystem. Named Construct gives us a readable and flexible way to ...

02, June 2021
Before PHP 8.1, we could pass null as argument to internal functions even if it does not accept null. On ...

28, May 2021
array is a very powerful tool in PHP codebase. PHP developers love to (ab)use arrays to solve every problem they ...

24, April 2021
Prepare for death, ye who enter here.Nope, this is not a threat. this is just explanation of newly introduced never ...

18, April 2021
PHP is improving it's type system in every release. Type safety is a great approach to increase data integrity and ...

17, April 2021
PHP is very popular for it's function naming and parameter orders. I've been working on PHP for more than 7 ...

17, April 2021
Aahh, Cookies. What a delicious way to track people online. It's even better when served to/from third party. But how ...

28, September 2020
PHP 8.0 comes with json extension statically built into it. So functions like json_encode(), json decode() can be always used ...

28, September 2020
From PHP 8.0, All GD functions with work with \GDImage class object instead of 'resource' type. Similar to : CurlHandle ...

15, August 2020
In today's programming world, usage of null is heavily discouraged. Reckless use of null can lead to unexpected behavior in ...