realpath

(PHP 4 , PHP 5)

realpath -- Retourne le chemin canonique absolu

Description

string realpath ( string path )

realpath() résout tous les liens symboliques, et remplace toutes les références /./, /../ et / de path puis retourne le chemin canonique absolu ainsi trouvé. Le résultat ne contient aucun lien symbolique, /./ ou /../.

Exemple 1. Exemple avec realpath()

<?php
  $real_path
= realpath ("../../index.php");
?>

Voir aussi basename(), dirname() et pathinfo().