before_last_bar( string $text ): string

Removes last item on a pipe-delimited string.


Description

Meant for removing the last item in a string, such as ‘Role name|User role’. The original string will be returned if no pipe ‘|’ characters are found in the string.


Top ↑

Parameters

$text string Required
A pipe-delimited string.

Top ↑

Return

string Either $text or everything before the last pipe.


Top ↑

Source

File: wp-includes/l10n.php. View all references

function before_last_bar( $text ) {
	$last_bar = strrpos( $text, '|' );
	if ( false === $last_bar ) {
		return $text;
	} else {
		return substr( $text, 0, $last_bar );
	}
}


Top ↑

Changelog

Changelog
Version Description
2.8.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.