You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
333 B

--TEST--
ReflectionClass::getExtensionName() method - variation test for getExtensionName()
--CREDITS--
Rein Velt <rein@velt.org>
#testFest Roosendaal 2008-05-10
--FILE--
<?php
class myClass
{
public $varX;
public $varY;
}
$rc=new reflectionClass('myClass');
var_dump( $rc->getExtensionName()) ;
?>
--EXPECT--
bool(false)