Description
The following code:
<?php
ini_set('error_include_args', '1');
function foo() {
include("does not exist");
}
foo(1, 2);
Resulted in this output:
Warning: include(1, 2): Failed to open stream: No such file or directory in /tmp/test3.php on line 6
Warning: include(1, 2): Failed opening 'does not exist' for inclusion (include_path='.:') in /tmp/test3.php on line 6
But I expected this output instead:
Warning: include("does not exist"): Failed to open stream: No such file or directory in /tmp/test3.php on line 6
Warning: include("does not exist"): Failed opening 'does not exist' for inclusion (include_path='.:') in /tmp/test3.php on line 6
PHP Version
Operating System
No response
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
Operating System
No response