Changing the Name of the PHP Errors File on VS
You can change the filename
for storing errors.
For this purpose, the
setting error_log is intended:
<?php
ini_set('display_errors', 'off');
ini_set('log_errors', 'on');
ini_set('error_log', 'errors.log');
echo $test;
?>
Change the name of the errors file.
Intentionally create an error. Make sure it appears in the desired file.