ReflectionFunctionAbstract::getStaticVariables

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

ReflectionFunctionAbstract::getStaticVariables静的変数を取得する

説明

public ReflectionFunctionAbstract::getStaticVariables(): array

静的変数を取得します。

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

この関数にはパラメータはありません。

返り値

静的変数の配列を返します。

参考

add a note add a note

User Contributed Notes 1 note

up
4
Martiros Aghajanyan
9 years ago
<?php

function test()
{
    static
$a = 0, $b = 15;
   
$a++;
   
$b++;
    return
$a;
}

$rf = new ReflectionFunction('test');

// result - Array ( [a] => 0 [b] => 15 )
print_r( $rf->getStaticVariables() );

//call test function and print again static variables
test();

// result - Array ( [a] => 1 [b] => 16 )
print_r( $rf->getStaticVariables() );

?>
To Top