PHP

PHP.net - PHP Manual | PHP.net - Filesystem Functions.

PHPhulp | PHPhulp - tutorials | PHPhulp - scripts.

tizag.com - PHP Tutorial - Learn PHP.

w3schools.com - PHP Functions.


<< PHP manual.


basename - uitvoer

met extensie: bestand.txt
zonder extensie: bestand


basename - code

<?php
echo "met extensie: " . basename("../php_manual/bestand.txt") . PHP_EOL;
echo "
"; echo "zonder extensie: ". basename("../php_manual/bestand.txt", ".txt") . PHP_EOL; ?>

Zie http://php.net/manual/en/function.basename.php.