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...

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.