(PHP 8 >= 8.2.0)
SensitiveParameterValue::getValue — 回傳敏感值
此函式沒有參數。
敏感值。
範例 #1 SensitiveParameterValue::getValue() 範例
<?php
$s = new \SensitiveParameterValue('secret');
echo "保護的值為:", $s->getValue(), "\n";
?>
上述範例將輸出
The protected value is: secret