wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



path_join › WordPress Function

Seit2.5.0
Veraltetn/v
path_join ( $base, $path )
Parameter: (2)
  • (string) $base Base path.
    Erforderlich: Ja
  • (string) $path Path relative to $base.
    Erforderlich: Ja
Gibt zurück:
  • (string) The path with the base or absolute path.
Definiert in:
Codex:

Joins two filesystem paths together.

For example, 'give me $path relative to $base'. If the $path is absolute, then it the full path is returned.


Quellcode

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

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