perl-5.38.0
${^TAINT}

Reflects if taint mode is on or off. 1 for on (the program was run with -T), 0 for off, -1 when only taint warnings are enabled (i.e. with -t or -TU).

汚染検査モードのオン・オフを反映します。 1 はオン(プログラムは -T 付きで実行されている)、0 はオフ、-1 は汚染 警告のみが有効になっている(つまり -t-TU)ことを意味します。

Note: if your perl was built without taint support (see perlsec), then ${^TAINT} will always be 0, even if the program was run with -T).

注意: perl が汚染チェック対応 (perlsec 参照) なしでビルドされている場合、 たとえプログラムが -T 付きで実行されていても、 ${^TAINT} は常に 0 です。

This variable is read-only.

この変数は読み込み専用です。

This variable was added in Perl v5.8.0.

この変数は Perl v5.8.0 で追加されました。