How to validate a variable is phone number in Php?
In this post, This function checks whether a variable is phone number or not.
How to validate a variable is IP address in Php?
In this post, This function checks whether a variable is IP or not.
How to validate is URL in Php?
In this post, This function checks whether a variable is of type URL or not.
How to validate value is Boolean in Php?
In this post, This function checks whether a variable is of type boolean or not.
How to validate value is Float in Php?
In this post, This function checks whether a variable is of type float or not.
How to create folder if it does not exists in Php?
The function creates a directory specified by a pathname if it does not exists in PHP.
How to use fopen() function in PHP?
The fopen function in PHP is an inbuilt function which is used to open a file or an URL.
How To Check If a String Starts with a Substring in PHP?
In this tutorial, this function performs a case-sensitive search and checks if a string starts with a substring in PHP.
How To Check If a String Ends with a Substring in PHP?
In this tutorial, this function performs a case-sensitive search and checks if a string ends with a substring in PHP.
How to get substring after last separator in php?
This function will return the last substring after trimming the string according to the separator passed in.