Statement on glibc/iconv Vulnerability

SensitiveParameterValue::getValue

(PHP 8 >= 8.2.0)

SensitiveParameterValue::getValueReturns the sensitive value

说明

public SensitiveParameterValue::getValue(): mixed

警告

本函数还未编写文档,仅有参数列表。

参数

此函数没有参数。

返回值

The sensitive value.

示例

示例 #1 SensitiveParameterValue::getValue() example

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

echo
"The protected value is: ", $s->getValue(), "\n";
?>

以上示例会输出:

The protected value is: secret

add a note

User Contributed Notes

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