Is it possible to remove the trailing slash / from a string using PHP?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Sure it is, simply check if the last character is a slash and then nuke that one.
Another (probably better) option would be using
|
|||||||
|
|
|
|||||||||||||||
|
|
Long accepted, however in my related searches I stumbled here, and am adding for "completeness";
It ensures portability from *nix to Windows, as I assume this question pertains to dealing with paths. |
|||
|
|
|
Yes, it is! |
|||
|
|
|
rtrim Use rtrim cause it respects the string doesnt end with a trailing slash |
|||||||
|