I have a script with some functions and within the script I want to read the
code from one of the functions into a string.

Example:

function myfunction() {
    echo "something";
    echo "something else";
    someotherfunction();
}

I want to read:

    echo "something";
    echo "something else";
    someotherfunction();

into a string.

Any ideas??? TIA
-Shawn



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

Reply via email to