Open In App

PHP | ctype_xdigit() Function

Last Updated : 05 Jun, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The ctype_xdigit() function in PHP used to check each and every character of string/text are hexadecimal digit or not. It return TRUE if all characters are hexadecimal otherwise return FALSE . Syntax :
ctype_xdigit(string text)
Parameters Used:
  • text : It is mandatory parameter which specifies the tested string.
Return Values: It returns TRUE if all characters of the string are hexadecimal otherwise return FALSE. Examples:
Input  :  ABCDEF0123
Output :  Yes

Input  : GFG2018
Output : No
   
Note :  It checking decimal digit or a character from [A-F, a-f].
Below programs illustrate the ctype_xdigit() function. Program: 1
Output:
Yes
Program: 2 Take one more example ctype_xdigit() function to check how it work when input contains uppercase lowercase and symbol character by using input as array of string.
Output:
Yes 
Yes 
No 
Yes 
No 
No
References : http://php.net/manual/en/function.ctype-xdigit.php

Next Article

Similar Reads