Statement on glibc/iconv Vulnerability

SensitiveParameterValue::getValue

(PHP 8 >= 8.2.0)

SensitiveParameterValue::getValueReturns the sensitive value

Descrizione

public SensitiveParameterValue::getValue(): mixed

Avviso

Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The sensitive value.

Esempi

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top