mirror of
https://github.com/php/php-src.git
synced 2025-01-08 20:17:28 +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==
|