eminent wrote:

> Hi everyone,
> i have to manipulate include function inside php source code to 
> satisfy my needs. it has to be configured, i think, with something 
> like PHP_FE(include .....)
> my problem is that i can't find where it is inside the php source 
> tree. i mean that i don't know in which file it is. can anyone help me? 

include is a parsed into a php opcode at compile time, you will need to 
look at Zend/execute.c in the big case loop, to find it. eg. it's not a 
php function as such.
hint: lxr.php.net is extremely usefull for all this...

Regards
Alan

>
> thanks for the help
> Max
>




-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to