SensitiveParameter 类

(PHP 8 >= 8.2.0)

简介

此属性用于标记敏感参数,如果该参数存在于堆栈跟踪中,则应对其值进行掩盖。

类概要

final class SensitiveParameter {
/* 方法 */
public __construct()
}

示例

<?php

function defaultBehavior(
string $secret,
string $normal
) {
throw new
Exception('Error!');
}

function
sensitiveParametersWithAttribute(
#[
\SensitiveParameter]
string $secret,
string $normal
) {
throw new
Exception('Error!');
}

try {
defaultBehavior('password', 'normal');
} catch (
Exception $e) {
echo
$e, PHP_EOL, PHP_EOL;
}

try {
sensitiveParametersWithAttribute('password', 'normal');
} catch (
Exception $e) {
echo
$e, PHP_EOL, PHP_EOL;
}

?>

PHP 8.2 中上述示例的输出类似于

Exception: Error! in example.php:7
Stack trace:
#0 example.php(19): defaultBehavior('password', 'normal')
#1 {main}

Exception: Error! in example.php:15
Stack trace:
#0 example.php(25): sensitiveParametersWithAttribute(Object(SensitiveParameterValue), 'normal')
#1 {main}

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top