On Mon, 2007-02-12 at 14:52 +0200, clive wrote:
> > <?php
> > 
> >     ob_start();
> >     include( 'someFile.php' );
> >     $content = ob_get_contents();
> >     ob_end_clean();
> > 
> > ?>
> 
> no I think he needs file_get_contents();

While that will certainly read PHP into a variable, it won't evaluate
the contents. Then you're stuck with eval. This has the undesirable
effect of not being able to take advantage of any opcode cache that may
be installed.

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

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

Reply via email to