<?php $array = [ "Cooking", "look", "I cant", "Walking the dog to the park", "washing", "talk", "one" ]; $maxLength = -1; $longestValue = null; foreach ($array as $value) { $length = strlen($value); if ($length > $maxLength) { $maxLength = $length; $longestValue = $value; } } var_export($longestValue);
You have javascript disabled. You will not be able to edit any code.