untrailingslashit()
Removes trailing forward slashes and backslashes if they exist.
The primary use of this is for paths and thus should be used for paths. It is not restricted to paths and offers no specific path support.
Used By: trailingslashit(), user_trailingslashit()
1 time — 0.000001 sec (speed of light) | 50000 times — 0.01 sec (speed of light) | PHP 7.3.12, WP 5.4
No Hooks.
Return
String
. String without the trailing slashes.
Usage
untrailingslashit( $string );
- $string(string) (required)
- What to remove the trailing slashes from.
Examples
#1 Demo: how it works
echo untrailingslashit( 'www/name/domen.ru/' ); //> www/name/domen.ru echo untrailingslashit( '/' ); //> ''
Changelog
Since 2.2.0 | Introduced. |
Code of untrailingslashit() untrailingslashit WP 6.0.1
function untrailingslashit( $string ) { return rtrim( $string, '/\\' ); }