SensitiveParameterValue::getValue

(PHP 8 >= 8.2.0)

SensitiveParameterValue::getValue返回敏感值

描述

public SensitiveParameterValue::getValue(): 混合

警告

此函数当前没有文档;只有其参数列表可用。

参数

此函数没有参数。

返回值

敏感值。

示例

示例 #1 SensitiveParameterValue::getValue() 示例

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

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

上面的示例将输出

The protected value is: secret

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top