I am learning php. I have an array as:
Array ( [0] => 160 [1] => 380 [2] => 180)
I have to convert this array to a string. I am aware of implode. But it joins all the array elements with a string. But if i have to join just the first 2 elements or specific elements which method should i use.? Am i missing something?