1 2 3 4 5 6 7
<?php $array = array('Hello', 'World', 'text'); $new_array = array_slice($array,0,-1); echo implode(' ',$new_array); ?>
1
Hello World