1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/opcache/tests/internal_func_info_static_method.phpt
2019-10-25 12:47:18 +02:00

15 lines
257 B
PHP

--TEST--
Internal static methods should not be confused with global functions
--SKIPIF--
<?php
if (!extension_loaded('zend-test')) die('skip requires zend-test');
?>
--FILE--
<?php
var_dump(is_bool(_ZendTestClass::is_object()));
?>
--EXPECT--
bool(false)