Skip to content

Category Archives: PHP

The debug_backtrace() function is an inbuild function in PHP which is generally used by programmers in debugging. The main work of debug_backtrace() function is to… Read More
PHP is a backend server-side language of web development. In general, we don’t need to take input from the console but sometimes we need to… Read More
In this article, we will learn to create a table in a PDF file from an external text file with PHP by using FPDF. It… Read More
In this article, we will learn, when should one use the require_once() method and when to use require() method in PHP. require() Method: PHP require()… Read More
In this article, we will learn how to generate PDF files and add new TrueType fonts with PHP by using FPDF. It is a free… Read More
The str_ends_with() function is a predefined function in PHP 8 that is used to perform case-sensitive searching on a given string. The str_ends_with() generally checks… Read More
In this article, we will learn about the shell_exec() & exec() functions in PHP. As we know that in order to execute a command in… Read More
In this article, we are going to learn concepts of database, how to make a simple game using PHP and MySQL, how can we implement… Read More
This is a predefined function in PHP 8 that is used to perform case-sensitive searches on a given string. str_starts_with() generally checks for the string… Read More
A “union type” accepts values of multiple different data types, rather than a single one. If the programming language supports union types, you can declare… Read More
The str_contains() is a predefined function that is introduced with the release of PHP 8. The str_contains() function search for the substring in the given… Read More
PHP 7 introduced a null-coalescing operator with ?? syntax. This operator returns its first operand if its value has been set and it is not… Read More
In this article, we will learn about the purpose of the php.ini file. At the time of PHP installation, php.ini was a special file provided… Read More
Whenever we are dealing with HTTP requests, cURL simplifies our tasks to a great extent and is the easiest tool to get our hands dirty… Read More
The getlastmod() function is used to get the time of the last modification of the main script of execution. To show the last modification time… Read More

Start Your Coding Journey Now!