before_last_bar

函数


before_last_bar ( $string )
参数
  • (string)
    $string
    A pipe-delimited string.
    Required:
返回值
  • (string) Either $string or everything before the last pipe.
定义位置
  • wp-includes/l10n.php
    , line 228
引入
2.8.0
弃用

Removes last item on a pipe-delimited string.

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.

function before_last_bar( $string ) {
	$last_bar = strrpos( $string, '|' );
	if ( false === $last_bar ) {
		return $string;
	} else {
		return substr( $string, 0, $last_bar );
	}
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。