PHP Array Exercises : Get the shortest/longest string length from an array
14. Get Shortest and Longest String Length from Array
Write a PHP script to get the shortest/longest string length from an array.
Sample arrays : ("abcd","abc","de","hjjj","g","wer")
Sample Solution:
PHP Code:
<?php
// Define an array named $my_array with string elements
$my_array = array("abcd", "abc", "de", "hjjj", "g", "wer");
// Use 'array_map' to apply the 'strlen' function to each element in $my_array
$new_array = array_map('strlen', $my_array);
// Output a message indicating the shortest and longest array lengths using 'min' and 'max' functions
echo "The shortest array length is " . min($new_array) .
". The longest array length is " . max($new_array) . '.';
?>
Output:
The shortest array length is 1. The longest array length is 4.
Flowchart:

For more Practice: Solve these Related Problems:
- Write a PHP function to determine the length of the shortest and longest strings in an array and display the results.
- Write a PHP script that calculates and compares string lengths from an array, then outputs the minimum and maximum values.
- Write a PHP program to use array_map to determine lengths of all strings and then compute the shortest and longest lengths using min() and max().
- Write a PHP script to filter an array by string lengths and display the extremes (shortest and longest) along with the strings that match.
Go to:
PREV : Display Numbers Divisible by 4 Without Control Statements.
NEXT :Generate Unique Random Numbers within a Range.
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.