maddogandnoriko Posted May 29, 2009 Share Posted May 29, 2009 Can I get the third element of an array regardless of it's key name? For example I have an $example array: Array ( [3] => European_SIB_Association [4] => andrew1.jpg [5] => andrew2.jpg [6] => andrew3.jpg [7] => andrew4.jpg [8] => artem ) How can I get the second element even though it is named four? Thank you, Todd Link to comment https://forums.phpfreaks.com/topic/160178-get-element-by-key-number-not-name/ Share on other sites More sharing options...
Philip Posted May 29, 2009 Share Posted May 29, 2009 You could use array_slice() $string = implode(array_slice($yourArray, 1,1)); Link to comment https://forums.phpfreaks.com/topic/160178-get-element-by-key-number-not-name/#findComment-845123 Share on other sites More sharing options...
maddogandnoriko Posted May 29, 2009 Author Share Posted May 29, 2009 Thank you very much. Perfect! Todd Link to comment https://forums.phpfreaks.com/topic/160178-get-element-by-key-number-not-name/#findComment-845137 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.