Im just wondering if there a way to write this code in just one line.
$exp = explode(" ", $text);
$cut = $exp[0];
So without having to assign variables.
Thanks
|
Im just wondering if there a way to write this code in just one line.
So without having to assign variables. Thanks |
|||
|
|
|
If you only ever want the first part, then avoid the array workaround with
It cuts out something from the string until the first delimiter (space in your case). |
|||||||
|
|
|||
|
|
|
|||||||||||
|
OR
|
|||
|
|