Изменить:
preg_split('/\s+/', "givecard 442 ashutosh2 Y hi how are you", 5);
Скажем, у вас есть такая функция:
function operate_on_string($string) {
$out = preg_split('/\s+/', $string);
# ...
return $out;
}
Передайте строку "givecard 442 ashutosh2 Y" и добавьте в конце слова "как дела":
operate_on_string("givecard 442 ashutosh2 Y" . ' ' . "hi how are you");
Просто передайте ему первую строку, а затем добавьте остальные к выводу:
array_merge(operate_on_string("givecard 442 ashutosh2 Y"), preg_split('/\s+/', "hi how are you"));