array
0 => string 'profile' (length=8)
1 => string 'helloworld' (length=8)
2 => string 'string2' (length=7)
// lets say we have an defined string that we want to split it out. or make it disappear.
string 'profile' (length=8)
how can we just get helloworld and string2 in an array from the array useing the string we defined ? ( get the a defined string out of the array )
is there a good function for this problem ?
the result should be like
array
1 => string 'helloworld' (length=8)
2 => string 'string2' (length=7)
Thanks for looking in
Adam Ramadhan