vote up 0 vote down star

I understand that the question is rather hard to understand, I didn't know how to ask it better, so I'll use this code example to make things more clear:
If I have the following files:

test.php:

<?php
 include('include.php');
 echo myClass::myStaticFunction();
?>

include.php

<?php
 __autoload($classname){
  include_once("class/".$classname.".php"); //normally checking of included file would happen
 }
?>

class/myClass.php

<?php
 class myClass{
  public static function myStaticFunction(){
   //I want this to return test.php, or whatever the filename is of the file that is using this class
   return SOMETHING;
  }
?>

the magic FILE constant is not the correct one, it returns path/to/myClass.php

flag

2 Answers

vote up 2 vote down check

in case you need to get "test.php" see $_SERVER['SCRIPT_NAME']

link|flag
or basename(FILE) – Mark Tyler Jan 14 at 12:39
read the question again: "the magic FILE constant is not the correct one, it returns path/to/myClass.php" – Ivan Jan 14 at 12:41
vote up 0 vote down

I ended up using:

$file = basename(strtolower($_SERVER['SCRIPT_NAME']));
link|flag
So, what if you now use script C, which includes a file that has your first example (A), and then your example includes the second file from autoloading, file (B) You would have the wrong filename. – SchizoDuckie Jan 14 at 19:13
Yes, ok, that's true. However in my case not a problem since I'll always need the first file (C) – Pim Jager Jan 16 at 16:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.