I split a string until the first four characters into an array with this code:
$word = "google";
substr($word, 0, 4);
But now I want to get the rest of the string into another array.
Ex: here I want to get "le" into another array. Is there a way to do this? Can anyone help me?