How to Create Directory in PHP with Example
Create a Directory in PHP PHP provides a number of functions that can be used to perform tasks such as identifying and changing the current directory, creating new directories, deleting…
Create a Directory in PHP PHP provides a number of functions that can be used to perform tasks such as identifying and changing the current directory, creating new directories, deleting…
create table in php In this article, we will see how to create a table in PHP with an example code. Indenting the code properly will increase the readability, understandability,…
Randomize Array PHP In this article, we will learn how to randomize array values in php. To randomize or shuffle the array values, we need to use the shuffle() function.…
Explode Function in PHP In this article, we will discuss PHP explode() function. It is used to splits a string into array elements. We must pass two arguments for this…
PHP Return Value From Function When PHP encounters a return statement inside a function, it halts the processing of the function and "returns" control to the main body of the…
Remove Duplicates From Array in PHP In this article, we will discuss how to remove duplicates values from an array in php. For that, we need to use PHP array_unique()…
Intro to PHP Language PHP was developed by Rasmus Lerdorf in 1994. It started as a small open-source project and later found its utility. PHP stands for Hypertext Preprocessor, whose…
fread in PHP In this article, we will discuss what is fread() function in php. This function is used to read the content of the file. It accepts two arguments,…
str_replace Learn what is str_replace function in php is with example code. If we need to perform substitution within a string. PHP also has the str_replace() function, designed specifically to…
Define Function in PHP In this article, we will discuss what is defined () function in PHP. The define function is one of the PHP. To define a constant, we…