mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
12 lines
180 B
PHP
12 lines
180 B
PHP
--TEST--
|
|
ReflectionExtension::isTemporary()
|
|
--FILE--
|
|
<?php
|
|
$obj = new ReflectionExtension('reflection');
|
|
var_dump($obj->isTemporary());
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
bool(false)
|
|
==DONE==
|