1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00
Files
archived-php-src/ext/reflection/tests/ReflectionClass_getExtensionName_variation.phpt
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02:00

19 lines
359 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)