How to trim some word in php? Example like
pid="5" OR pid="3" OR
I want to remove the last OR
|
|
|
I suggest using
Now Also, an entirely different solution is to append @RussellDias' answer is the real answer to your question, these are just some alternatives to think about. |
|||||
|
|
You can try rtrim:
|
|||||||||||||||||||||
|
|
Using substr to find and remove the ending
|
|||
|
|
|
A regular expression would also work:
|
|||||
|
|
What do you think about this?
|
|||
|
|