1--TEST-- 2Internal static methods should not be confused with global functions 3--EXTENSIONS-- 4opcache 5zend_test 6--FILE-- 7<?php 8 9var_dump(is_bool(_ZendTestClass::is_object())); 10 11?> 12--EXPECT-- 13bool(false) 14