Just_Johnny Posted March 17, 2009 Share Posted March 17, 2009 My array looks like this. [0] => Value 1 [1] => Value 2 [2] => Value 3 [3] => Value 4 [4] => Value 5 The first two are simple. $This = $array[0]; $That = $array[1]; No problem so far For $array[2] and up. I want it to append the next value. so... $These = $array[2]." ".$array[3]." ".$array[4]; The problem is the array doesn't always end at 4. This is what I've done, but I know there is an better way. $model = $Array[2] ." ".$Array[3] ." ".$Array[4] ." ".$Array[5] ." ".$Array[6] ." ".$Array[7] ." ".$Array[8] ." ".$Array[9]; Sorry, I know this is super simple stuff than what you guy are used to at this forum. Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/149880-solved-simple-for-you-hard-for-me-is-there-a-better-way-to-append-each-array-value/ Share on other sites More sharing options...
rhodesa Posted March 17, 2009 Share Posted March 17, 2009 $These = implode(' ',array_slice($array,2)); Link to comment https://forums.phpfreaks.com/topic/149880-solved-simple-for-you-hard-for-me-is-there-a-better-way-to-append-each-array-value/#findComment-787091 Share on other sites More sharing options...
Just_Johnny Posted March 17, 2009 Author Share Posted March 17, 2009 Thanks MacGyver Link to comment https://forums.phpfreaks.com/topic/149880-solved-simple-for-you-hard-for-me-is-there-a-better-way-to-append-each-array-value/#findComment-787109 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.