(PHP 8 >= 8.2.0)
SensitiveParameterValue::getValue — 返回敏感值
說(shuō)明
public SensitiveParameterValue::getValue(): mixed
警告
本函數(shù)還未編寫(xiě)文檔,僅有參數(shù)列表。
參數(shù)
此函數(shù)沒(méi)有參數(shù)。
返回值
The sensitive value.
示例
示例 #1 SensitiveParameterValue::getValue() example
<?php
$s = new \SensitiveParameterValue('secret');
echo "The protected value is: ", $s->getValue(), "\n";
?>
以上示例會(huì)輸出:
The protected value is: secret