PHP 8.1.24 Released!

SensitiveParameterValue::getValue

(PHP 8 >= 8.2.0)

SensitiveParameterValue::getValueReturns the sensitive value

Descrição

public SensitiveParameterValue::getValue(): mixed

Aviso

Esta função não está documentada; apenas a lista de argumentos está disponível.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The sensitive value.

Exemplos

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

add a note

User Contributed Notes

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