Użytkownik Hartmut Holzgraefe <[EMAIL PROTECTED]> w wiadomooci do grup
dyskusyjnych napisał:[EMAIL PROTECTED]
> Krzysztof Socki wrote:
> > Hello!
> > Can anyone tell me if it's possible to extent PHP with a function that
> > includes other PHP file? I know that 'include' is not a function, is it
> > possible to work it around? I need a function that includes a file
> > respective to the location of the running script. Maybe I could extend
the
> > parser to use an alias of 'include' with a constant file path? I'd be
> > grateful for your help. Thanks in advance.
>
> function include_me($path) {
>    include $path;
> }
>
> should do the trick?
>
I need a function that includes a file, but doesn't show that something is
included. I would like to be able to do something like this:

ala();              //  include some file - the name of the included file is
constant respective to the script location
ela(); ola();     // use functions defined at the included file

Can you help?

KS.



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

Reply via email to