<?php function split_nth($str, $delim, $n) { return array_map(function($p) use ($delim) { return implode($delim, $p); }, array_chunk(explode($delim, $str), $n)); } $array = split_nth("Atap Bocor AC Bagus Kursi bagus Meja Bagus", " ", 2); print_r($array);
You have javascript disabled. You will not be able to edit any code.