Nodral Posted February 8, 2012 Share Posted February 8, 2012 Hi I've written a function which should reference a couple of arrays, and return an array of the length of the longest value in the arrays. Confused, let me explain some more. <?php function getLongest($records,$headers){ foreach ($headers as $fieldid){ foreach($records as $recordid){ $length[]=strlen(getContent($fieldid,$recordid)); } $result[$fieldid]=max($length); } return $result; } ?> I pass in 2 arrays, the first ($records) being references to the record id's from my DB, the second ($headers) is the column from my DB table where I pull the record info from. I have another function getContent which cross references these 2 values and gets the actual data (this works fine) I am trying to create an array of every content entry for each heading, then iterate through it and find the longest value. Then return an array of heading reference against longest content length. My content varies between 10 characters to a couple of hundred characters long, dependant on the column. I have approx 3000 entries in the DB. The results I'm getting are just not what I'd expect, i.e, I run the function against columns showing longtitude and latitude of locations, (expect the result to be approx 12 for the longest) but I get 38?!?! I've even tried using trim() with it incase there's any leading / trailing whitespace. Any thoughts? Quote Link to comment https://forums.phpfreaks.com/topic/256657-longest-string-in-arrays/ Share on other sites More sharing options...
GingerRobot Posted February 8, 2012 Share Posted February 8, 2012 Aside from the fact that it would probably be more efficient to do this inside a query (so you don't have to keep re-querying the database!): Why don't you try printing out the result of getContent() each time around the inner loop. This should help you find out why you're getting bogus results. Quote Link to comment https://forums.phpfreaks.com/topic/256657-longest-string-in-arrays/#findComment-1315711 Share on other sites More sharing options...
PFMaBiSmAd Posted February 8, 2012 Share Posted February 8, 2012 Without all the relevant code needed to reproduce the problem (your code that displays the result or the getContent() code could in fact be where the problem lies) and showing at least one piece of wrong data that is being returned that should not be and stating how you know it should not be returned in comparison to a correct piece of data, it's not really possible to directly help you. You have basically asked someone who is not standing right next to you to guess what your relevant code and data is, guess what result you got that is wrong and why it is wrong, and guess what result you expect. Quote Link to comment https://forums.phpfreaks.com/topic/256657-longest-string-in-arrays/#findComment-1315714 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.