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



wp_basename › WordPress Function

Seit3.1.0
Veraltetn/v
wp_basename ( $path, $suffix = '' )
Parameter: (2)
  • (string) $path A path.
    Erforderlich: Ja
  • (string) $suffix If the filename ends in suffix this will also be cut off.
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (string)
Definiert in:
Codex:

i18n-friendly version of basename().



Quellcode

function wp_basename( $path, $suffix = '' ) {
	return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) );
}