Re: include file identifier

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

 



Robert Cummings wrote:
Looking at the code above... it would seem you want:

    include_once()
It's not the idea..

I'm not trying to make that code work, I want to know which exact include (of the same file) does what..

Say you got a loop of self-include:
e.g:
=== a.php
<?php
echo "\nRunning ".__FILE__." (id=X)!\t";
if ($visited<5) {
	echo "You are visiting here!";
	$visited++;
	include(__FILE__);
}
else {
	echo "That's enough! Bye!";
}
?>

In "(id=X)!".. what's the X? You may say you can use $visited as an identifier, but it's not the point I mean.. I want a global include file identifier, that is not dependent on other variables.

--
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