Google

NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.73 ">

pathinfo

(PHP 4 >= 4.0.3)

pathinfo -- Retourne des informations sur un chemin système

Description

array pathinfo ( string path)

pathinfo() retourne un tableau associatif, contenant les informations sur le chemin path. Les éléments suivants sont retournés : dirname, basename et extension.

Exemple 1. Exemple avec pathinfo()

<?php
  $path_parts = pathinfo("/www/htdocs/index.html");
  echo $path_parts["dirname"] . "\n";
  echo $path_parts["basename"] . "\n";
  echo $path_parts["extension"] . "\n";
?>

Va afficher :

/www/htdocs
index.html
html

Voir aussi dirname(), parse_url(), basename() et realpath().