Robert Cummings wrote:
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.

true, but Ross did not mention anything about evaluating/running code in the included file , if he need thats then yes your option is better.

--
Regards,

Clive.

Realtime Travel Connection.


{No electrons were harmed in the creation, transmission or reading of this email. However, many were excited and some may well have enjoyed the experience.}

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

Reply via email to