blob: 7d1036def8e2a4d135c58b1163b3e4cf996756e8 (
plain)
1
2
3
4
5
6
7
8
|
--TEST--
Error message for isset(func())
--FILE--
<?php
isset(abc());
?>
--EXPECTF--
Fatal error: Cannot use isset() on the result of a function call (you can use "null !== func()" instead) in %s on line %d
|