The array is as follows:
array( array(5, true, 'Foo'), array(8, true, 'Bar'), array(8, true, 'FooBar'), )
Can I determine the length of the long row of the third column without having to iterate over the array?
In my example, the longest string would be "FooBar" - 6 characters.
If the internal array had only a string element, I could do max(array_map('strlen', $arr)) , but it has 3 elements ...
source share