How to check whether a string has no whitespace in php?

To check whether a string has no whitespace, use the preg_match() in PHP.

How to remove special character from string in php?

In this post,we will leran you how to remove special character from string in php.

How to extract all digits from a string in PHP?

In this article, To get the list of all numbers in a String, use the regular expression ‘[0-9]+’ with re.findall() method. [0-9] represents a regular expression to match a single digit in the string. [0-9]+ represents continuous digit sequences of any length.

How to Encrypt a String in PHP?

In this post, we build-in function to encrypt large files. openssl_encrypt() can be used to encrypt strings in php.

How to Decrypt a String in PHP?

In this post, we build-in function to decrypt large files. openssl_decrypt() can be used to encrypt strings in php.

How to get a random string in php?

This tutorial includes several methods of generating a unique, random, alpha-numeric string with PHP.

How to convert to capital string in php?

This post, we helps you convert string to capital string.

How to detect number from string in php?

This post, we helps you check if a string contains numeric characters.

How to convert mysql date to string in php?

In this tutorial, we will explain to you how you can convert mysql date to string in PHP.

How to convert date string to mysql date in php?

In this tutorial, we will explain to you how you can convert date string to mysql date in PHP.