Maximum execution time taken by a PHP Script
One important aspect of PHP programs is that the maximum time taken to execute a script is 30 seconds. The time limit varies depending on… Read More »
One important aspect of PHP programs is that the maximum time taken to execute a script is 30 seconds. The time limit varies depending on… Read More »
The OPCache is used for improving the performance of PHP as it stores the precompiled bytecode, in result deleting the need for loading and parsing… Read More »
To delete a file by using PHP is very easy. Deleting a file means completely erase a file from a directory so that the file… Read More »
The Imagick floodFillPaintImage() Function is an in-built function in PHP which is used to change the color value of any pixel that matches the target,… Read More »
This article explains how to connect multiple MySQL databases into a single webpage. It is useful to access data from multiple databases. There are two… Read More »
The filter_input_array() function is an inbuilt function in PHP which is used to get external variables (e.g. from form input) and filters them if it… Read More »
There are four ways to display errors in PHP which are listed below: error_reporting: It does not disaply the E-STRICT, E-NOTICE and E_DEPRECATED level errors… Read More »
Thread-safe: It is used to ensure that when the shared data structure which is manipulated by different threads are prevented from entering the race condition.… Read More »
PHP provides a json_encode() function that converts PHP arrays into JavaScript. Technically, it is in JSON format. JSON stands for JavaScript Object Notation. Statement: If… Read More »
XAMPP is a free and open source cross-platform web server solution stack package developed by Apache which allows a web application to be easily tested… Read More »
An array can be created using the array() language construct. It takes any number of comma-separated key => value pairs as arguments. Syntax: array( key… Read More »
Error: An Error is an unexpected program result, which can not be handled by the program itself. That can be solved by using the issue… Read More »
Both the function are used to do some undo operations but used in different situations cause both acts differently. The unlink() function is used when… Read More »
At the time of PHP installation, php.ini is a special file provided as a default configuration file. It’s very essential configuration file which controls, what… Read More »
Cookie: A Cookie is a small file sent by the server to preserve stateful information for a user. It is stored on the client’s computer… Read More »