(PHP 8 >= 8.2.0)
SensitiveParameterValue::getValue — 返回敏感值
此函数没有参数。
敏感值。
示例 #1 SensitiveParameterValue::getValue() 示例
<?php
$s = new \SensitiveParameterValue('secret');
echo "The protected value is: ", $s->getValue(), "\n";
?>
上面的示例将输出
The protected value is: secret