SplFileInfo::getRealPath
(PHP 5 >= 5.2.2)
SplFileInfo::getRealPath — Lit le chemin absolu d'un fichier
Description
public string SplFileInfo::getRealPath
( void
)
Cette méthode résout tous les liens symboliques, les chemins relatifs et retourne le véritable chemin qui mène à un fichier.
Liste de paramètres
Cette fonction ne contient aucun paramètre.
Valeurs de retour
Retourne le chemin du fichier.
Exemples
Exemple #1 Exemple avec SplFileInfo::getRealPath()
<?php $info = new SplFileInfo('/..//./../../'.__FILE__); var_dump($info->getRealPath()); $info = new SplFileInfo('/tmp'); var_dump($info->getRealPath()); ?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
string(28) "/private/tmp/phptempfile.php" string(12) "/private/tmp"