include file identifier

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

Does any included file in PHP have a unique identifier? (like a stack of includes identifier).

If the files names are different, then __FILE__ can be used as an identifier. But if a file was included by itself, then __FILE__ is the same, tho there are 2 different includes of the same file.

Example:
=== a.php
<?php
echo "\nRunning ".__FILE__." (id=X)!\t";
if (!$visited) {
	echo "You are visiting here!";
	$visited = true;
	include(__FILE__);
}
else {
	echo "You have been already visiting here! (Bye)";
}
?>

-thanks, Eli

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux