mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
14 lines
202 B
PHP
14 lines
202 B
PHP
--TEST--
|
|
Internal static methods should not be confused with global functions
|
|
--EXTENSIONS--
|
|
opcache
|
|
zend_test
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(is_bool(_ZendTestClass::is_object()));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|