mirror of
https://github.com/php/php-src.git
synced 2026-04-01 13:12:16 +02: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)
|