PHP | ctype_graph() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report A ctype_graph() Function is inbuilt function in PHP. The given string is used to check each character and display all visible character without white-space character. If it's visible then return True otherwise False. Syntax: bool ctype_graph ( $text ) Parameters: The ctype_graph() function accepts a single parameter $text file which contains tested strings. Return Value: It return true if every character in $text is printable, otherwise return false. Examples: Input : Geeks Input : http//geeks.com\n Output : No Explanation : "\n" is not visible in string "http//geeks.com\n". Below is the implementation of ctype_graph() function. Program 1: PHP <?php // PHP program to check given string // produce visible output or not $string = "Geeksforgeeks"; // Check strings by using ctype_graph() // function. if ( ctype_graph ($string) ) echo "$string: Visible"; else echo "$string: Not Visible"; ?> Output:Geeksforgeeks: Visible Program 2: PHP <?php // PHP program to check given string // produce visible output or not $string = array( "@!#$%^&*()_+", "peaceful mind", '45600' ); // Check strings by using ctype_graph() // function. foreach ($string as $test) { if (ctype_graph($test)) echo "$test: Visible\n"; else echo "$test: Not Visible\n"; } ?> Output:@!#$%^&*()_+: Visible peaceful mind: Not Visible 45600: Visible Related Article: PHP | ctype_print() Function References :https://www.php.net/manual/en/function.ctype-graph.php Comment More infoAdvertise with us Next Article PHP | ctype_cntrl() Function J jit_t Follow Improve Article Tags : Web Technologies PHP PHP-function Similar Reads PHP | ctype_print() Function The ctype_print() Function in PHP used to check each and every character of a string are visible or not. If all characters of string are visible then returns TRUE , else if there are any control character then return FALSE. Control Character: A character that does not represent a printable character 2 min read PHP | ctype_print() Function The ctype_print() Function in PHP used to check each and every character of a string are visible or not. If all characters of string are visible then returns TRUE , else if there are any control character then return FALSE. Control Character: A character that does not represent a printable character 2 min read PHP | ctype_cntrl() Function The ctype_cntrl() is an inbuilt function in PHP which is used to check all the characters in string/text are control characters. Control characters are e.g. line feed, tab, escape.Syntax: bool ctype_cntrl ( $str ) Parameters: This function accepts a single parameter $str. It is a mandatory parameter 2 min read PHP | ctype_cntrl() Function The ctype_cntrl() is an inbuilt function in PHP which is used to check all the characters in string/text are control characters. Control characters are e.g. line feed, tab, escape.Syntax: bool ctype_cntrl ( $str ) Parameters: This function accepts a single parameter $str. It is a mandatory parameter 2 min read PHP | ctype_cntrl() Function The ctype_cntrl() function is an inbuilt function in PHP and is used to check if all the characters of a given string are control characters or not. It returns True if all characters of the string are control characters otherwise it returns false.Control Character: A character that does not represen 2 min read PHP | ctype_cntrl() Function The ctype_cntrl() function is an inbuilt function in PHP and is used to check if all the characters of a given string are control characters or not. It returns True if all characters of the string are control characters otherwise it returns false.Control Character: A character that does not represen 2 min read Like