mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
10 lines
127 B
PHP
10 lines
127 B
PHP
--TEST--
|
|
Issetting a non-existent static property
|
|
--FILE--
|
|
<?php
|
|
Class C {}
|
|
var_dump(isset(C::$p));
|
|
?>
|
|
--EXPECTF--
|
|
bool(false)
|