mirror of
https://github.com/php/php-src.git
synced 2025-01-13 14:34:48 +08:00
12 lines
181 B
PHP
12 lines
181 B
PHP
--TEST--
|
|
ReflectionExtension::isPersistent()
|
|
--FILE--
|
|
<?php
|
|
$obj = new ReflectionExtension('reflection');
|
|
var_dump($obj->isPersistent());
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
bool(true)
|
|
==DONE==
|