I'm updating to PHP 7.4.5 on Windows/IIS and obviously lost in configuration.
Suddenly script output isn't shown on any notice-warnings
<?php
$a = 'cat';
echo $a;
echo $b;
file_put_contents('debug.txt',date('H:i:s',time()));
just shows:
PHP Notice: Undefined variable: b ..test2.php on line 5
Which is all fine, but I miss the cat.
Script is executed as debug.txt is updated.