mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
19 lines
333 B
PHP
19 lines
333 B
PHP
--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)
|