PHP Doku:: Gets the path without filename - splfileinfo.getpath.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)DateibehandlungThe SplFileInfo classSplFileInfo::getPath

Ein Service von Reinhard Neidl - Webprogrammierung.

The SplFileInfo class

<<SplFileInfo::getOwner

SplFileInfo::getPathInfo>>

SplFileInfo::getPath

(PHP 5 >= 5.1.2)

SplFileInfo::getPathGets the path without filename

Beschreibung

public string SplFileInfo::getPath ( void )

Returns the path to the file, omitting the filename and any trailing slash.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the path to the file.

Beispiele

Beispiel #1 SplFileInfo::getPath() example

<?php
$info 
= new SplFileInfo('/usr/bin/php');
var_dump($info->getPath());


$info = new SplFileInfo('/usr/');
var_dump($info->getPath());?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

string(8) "/usr/bin"
string(4) "/usr"

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)