(PHP 8 >= 8.2.0)
SensitiveParameterValue::getValue — Returns the sensitive value
Esta função não está documentada; apenas a lista de argumentos está disponível.
Esta função não possui parâmetros.
The sensitive value.
Exemplo #1 SensitiveParameterValue::getValue() example
<?php
$s = new \SensitiveParameterValue('secret');
echo "The protected value is: ", $s->getValue(), "\n";
?>
O exemplo acima produzirá:
The protected value is: secret