mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
13 lines
178 B
PHP
13 lines
178 B
PHP
--TEST--
|
|
Operator precedence
|
|
--FILE--
|
|
<?php /* $Id$ */
|
|
|
|
var_dump((object)1 instanceof stdClass);
|
|
var_dump(! (object)1 instanceof Exception);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|