Copyright© M&Aクラウド
PHP8.2で新しくできること
新機能💡
● バックトレースにおけるセンシティブなパラメータの出⼒抑制ができる
function getUser(
$name,
$email,
#[SensitiveParameter] $password
) {
throw new Exception('Error');
}
getUser('taro', '
[email protected]', 'taropass');
function getUser(
$name,
$email,
#[SensitiveParameter] $password
) {
throw new Exception('Error');
}
getUser('taro', '
[email protected]', 'taropass');
PHP8.2~ ~PHP8.1