How-to articles, tricks, and solutions about PHP
Declaration of Methods should be Compatible with Parent Methods in PHP
In PHP, when a class inherits from another class, it is said to be a subclass or derived class.
Delete particular word from string
In PHP, you can use the str_replace function to delete a particular word from a string.
Detecting request type in PHP (GET, POST, PUT or DELETE)
In PHP, you can use the $_SERVER['REQUEST_METHOD'] superglobal to detect the request type.
Difference between require, include, require_once and include_once?
In PHP, require and include are two statements that are used to include a file in a PHP script.