Skip to content

Category Archives: PHP

A Persistent Cookie is a small piece of data that is stored on a user’s computer and remains there after the user has closed their… Read More
The ZipArchive::getArchiveComment() function is an inbuilt function in PHP that is used to return the zip archive comment. Syntax: string|false ZipArchive::getArchiveComment(int $flags = 0) Parameters:… Read More
The ZipArchive::extractTo() function is an inbuilt function in PHP that is used to extract the zip archive content in a folder. Syntax: bool ZipArchive::extractTo( string… Read More
The ZipArchive::deleteIndex() function is an inbuilt function in PHP that is used to delete an entry from the zip archive using its index. Syntax: bool… Read More
The ZipArchive::deleteName() function is an inbuilt function in PHP that is used to delete an entry from the zip archive using its name. Syntax: bool… Read More
The ZipArchive::count() function is an inbuilt function in PHP that is used to count the number of files in a zip archive. Syntax: int ZipArchive::count()… Read More
An object is an individual instance of the data structure defined by a class. We define a class once and then make many objects that… Read More
In this article, we will see how to use the Localhost server to run the PHP code. Localhost server simulates a similar environment to compile… Read More
The mb_chr() function is an inbuilt function in PHP that is used to return the character unicode point value that is encoded into the specified… Read More
The mb_convert_case() function is an inbuilt function in PHP that is used to perform case folding on the string and converted it into the specified… Read More
The term PHP is an acronym for Hypertext Preprocessor, which is a server-side scripting language designed specifically for web development. It is open-source which means… Read More
WordPress is an open-source Content Management System that is totally based on PHP and MySQL and is used to create a dynamic website. It was… Read More
The PHP match expression is used for the identity check of a value. It is similar to the switch statement i.e. it matches the expression… Read More
The mb_check_encoding() function is an inbuilt function in PHP that is used to check whether a given string is valid for specified encoding or not.… Read More
WordPress spam protection mechanisms help reduce the number of spam comments and trackbacks posted on a WordPress site. One of the most effective spam protection… Read More