SensitiveParameterValue::getValue

(PHP 8 >= 8.2.0)

SensitiveParameterValue::getValueRetorna o valor sensível

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

O valor sensível.

Exemplos

Exemplo #1 Exemplo de SensitiveParameterValue::getValue()

<?php
$s
= new \SensitiveParameterValue('secret');

echo
"O valor protegido é: ", $s->getValue(), "\n";
?>

O exemplo acima produzirá:

O valor protegido é: secret

add a note

User Contributed Notes

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