mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
|
--TEST--
|
||
|
Bug #23584 (error line numbers off by one when using #!php)
|
||
|
--FILE--
|
||
|
#!php
|
||
|
<?php
|
||
|
|
||
|
error_reporting(E_ALL);
|
||
|
|
||
|
echo $foo;
|
||
|
|
||
|
?>
|
||
|
--EXPECTREGEX--
|
||
|
Notice: Undefined variable:.*foo in .* on line 6
|