w3resource

PHP Array Exercises : Get the shortest/longest string length from an array

PHP Array: Exercise-14 with Solution

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:

Flowchart: Get the shortest/longest string length from an array

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP script which displays all the numbers between 200 and 250 that are divisible by 4.
Next: Write a PHP script to generate unique random numbers within a range.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/php-exercises/php-array-exercise-14.php