(PHP 8 >= 8.2.0)
SensitiveParameterValue::getValue — Returns the sensitive value
Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.
Questa funzione non contiene parametri.
The sensitive value.
Example #1 SensitiveParameterValue::getValue() example
<?php
$s = new \SensitiveParameterValue('secret');
echo "The protected value is: ", $s->getValue(), "\n";
?>
Il precedente esempio visualizzerà:
The protected value is: secret