I'm working on a largish piece of code and all I get in the browser is a blank screen.
I added
error_reporting(E_ALL);
ini_set('display_errors', '1');
but I still get no output and no errors.
If I write one line of code with a deliberate error, I see a message about syntax errors.
As soon as I add some of the functions from the new long code, I just get a blank screen.
How to find the syntax errors when there's no output and no error messages?
Even "print"ing variables and using "var dump" shows nothing (unless it's on the very simple one or two line test code).