(PHP 8 >= 8.2.0)
SensitiveParameterValue::__debugInfo — Protects the sensitive value against accidental exposure
Returns an empty array to protect the sensitive value against accidental exposure when using var_dump().
Questa funzione non contiene parametri.
An empty array.
Example #1 Passing a SensitiveParameterValue object to var_dump()
<?php
$s = new \SensitiveParameterValue('secret');
var_dump($s);
?>
Il precedente esempio visualizzerà:
object(SensitiveParameterValue)#1 (0) { }