url_shorten

函数


url_shorten ( $url, $length = 35 )
参数
  • (string)
    $url
    URL to shorten.
    Required:
  • (int)
    $length
    Optional. Maximum length of the shortened URL. Default 35 characters.
    Required:
    Default: 35
返回值
  • (string) Shortened URL.
定义位置
  • wp-includes/formatting.php
    , line 6040
引入
1.2.0
弃用

缩短一个URL,作为链接文本使用。

function url_shorten( $url, $length = 35 ) {
	$stripped  = str_replace( array( 'https://', 'http://', 'www.' ), '', $url );
	$short_url = untrailingslashit( $stripped );

	if ( strlen( $short_url ) > $length ) {
		$short_url = substr( $short_url, 0, $length - 3 ) . '…';
	}
	return $short_url;
}