I would like to access some functions defined in another PHP file, but that file also outputs content that I don\'t want to display.
Is there any way to access the f
Well, you could capture the output of the file using, say, an Output Buffer then discarding it. However, any other global side effects (global variables set, files written, etc) would still occur. It would be much better to refactor that file to move the functions into their own include, which can be include
ed by both.