When I run php someScript.php
I get some expected output and some unexpected strings. They look like debugging strings and were probably placed there during development. The file is a part of a larger framework and can include other files that can further require others.
I have no idea which function (echo, print, var_dump, write, ...) is being used to output the (unwanted) strings.
How can I find a file & row number of a place where a (dynamically generated) string is being outputted to stdout.
thx!