mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
11 lines
126 B
PHP
11 lines
126 B
PHP
--TEST--
|
|
Instanceof on literals returns false
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump("abc" instanceof stdclass);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|