path_join

函数


path_join ( $base, $path )
参数
  • (string)
    $base
    Base path.
    Required:
  • (string)
    $path
    Path relative to $base.
    Required:
返回值
  • (string) The path with the base or absolute path.
定义位置
  • wp-includes/functions.php
    , line 2134
引入
2.5.0
弃用

将两个文件系统的路径连接在一起。

例如,”give me $path relative to $base”。如果$path是绝对的,那么它将返回完整的路径。

function path_join( $base, $path ) {
	if ( path_is_absolute( $path ) ) {
		return $path;
	}

	return rtrim( $base, '/' ) . '/' . $path;
}