Hallo zusammen.
Ich habe Folgendes Problem:
Ich möchte in einer Funktion den Dateinamen erfragen, der Datei in welcher die Funktion angewendet wird.
Also ca. so:
Funktiondatei
Anwende Datei:
Als Ausgabe bekomm ich 'function.php', ich möchte aber, dass als Ausgabe 'index.php' kommt.
Mit $_SERVER['PHP_SELF'] funkt das ganze auch ned.
Hoffe ihr könnt mir helfen!
Mfg,
Andy
Ich habe Folgendes Problem:
Ich möchte in einer Funktion den Dateinamen erfragen, der Datei in welcher die Funktion angewendet wird.
Also ca. so:
Funktiondatei
PHP-Code:
// function.php
function x() {
$file = basename(__FILE__);
echo $file;
}
PHP-Code:
// index.php
include('function.php'):
x();
Mit $_SERVER['PHP_SELF'] funkt das ganze auch ned.
Hoffe ihr könnt mir helfen!
Mfg,
Andy
Kommentar