PHP (mixed) (tag)
List of all exceptions in PHP available out of the box
This article provides a comprehensive list of built-in exceptions in PHP, detailing their descriptions and hierarchical...
Covariance, Contravariance in PHP
This article discusses the concepts of covariance and contravariance in PHP, focusing on their definitions, rules, and...
Check if the String is JSON String in PHP
The code below checks whether passed string looks like a JSON string. Decodes it if it is a JSON string.
This is an...
Measuring the Speed (Execution Time) of a PHP Script
How to measure the execution time (speed) of PHP code using microtime and a helper function.
How to Split a Sentence into Words in PHP
This article explains how to split a sentence into words using the strtok() function in PHP.