You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--TEST--
|
|
'break' error (operator with non-integer operand)
|
|
--SKIPIF--
|
|
<?php die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
function foo () {
|
|
break $x;
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: 'break' operator with non-integer operand is no longer supported in %sbreak_error_002.php on line 3
|
|
|