SensitiveParameterValue::getValue

(PHP 8 >= 8.2.0)

SensitiveParameterValue::getValue秘密の値を返す

説明

public SensitiveParameterValue::getValue(): mixed

警告

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

パラメータ

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

戻り値

秘密の値を返します。

例1 SensitiveParameterValue::getValue() の例

<?php
$s
= new \SensitiveParameterValue('secret');

echo
"The protected value is: ", $s->getValue(), "\n";
?>

上の例の出力は以下となります。

The protected value is: secret

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top