1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/opcache/tests/internal_func_info_static_method.phpt
2021-04-05 06:34:13 +01:00

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)