PHP Array Exercises : Check whether all array values are strings or not
46. Check if All Array Values Are Strings
Write a PHP function to check whether all array values are strings or not.
Sample Solution:
PHP Code:
Output:
bool(true) bool(false)
Flowchart:

For more Practice: Solve these Related Problems:
- Write a PHP function to verify that every element in an array is a string, returning a boolean result.
- Write a PHP script to iterate over an array and check the type of each element, outputting false immediately if a non-string is detected.
- Write a PHP program to filter an array for strings and then compare the count with the original array size to verify all values are strings.
- Write a PHP script that uses array_filter to remove non-string elements and then compares the filtered array with the original.
Go to:
PREV :Multi-Dimensional Array Difference using array_udiff.
NEXT : Get an Array with First Key and Value.
PHP Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.