Thread Name des laufendend skripts: Dringend! (7 answers)
Opened by master at 2005-03-03 17:03

GwenDragon
 2005-03-04 09:22
#10176 #10176
User since
2005-01-17
14563 Artikel
Admin1
[Homepage]
user image
Es gibt eine basename - habe gerade ins PHP Manual geschaut. Ich habe nicht so viel PHP im Kopf, da Perl mein bevorzugtes Skript-Programm ist ;)

Quote
Usage: string basename ( string path [, string suffix] )

Purpose: Returns filename component of path
Availability: PHP 3, PHP 4  

Given a string containing a path to a file, this function will return the base name of the file. If the filename ends in suffix this will also be cut off.

On Windows, both slash (/) and backslash (\) are used as path separator character. In other environments, it is the forward slash (/).


Code: (dl )
1
2
3
4
5
<?php 
$path = "/home/httpd/html/index.php";
$file = basename ($path);        // $file is set to "index.php"
$file = basename ($path,".php"); // $file is set to "index"
?>
\n\n

<!--EDIT|GwenDragon|1109921013-->
die Drachin, Gwendolyn


Unterschiedliche Perl-Versionen auf Windows (fast wie perlbrew) • Meine Perl-Artikel

View full thread Name des laufendend skripts: Dringend!