This page is a translated version of the page At-ease and the translation is 75% complete.

at-ease は、PHP のエラー制御演算子 @ の安全な代替手段を提供する PHP ライブラリです。 From 2010 to 2020, it was recommended not to use @ in MediaWiki and extensions, but instead use this library. コードは当初 MediaWiki に r4261 で導入されましたが、のちに MediaWiki 1.26 の開発サイクルの中で別個のライブラリに分割されました。

Since 2020 and the better support of fatal error handling in PHP 7, it is recommended to use @ in MediaWiki and extensions: see the "Error handling" section on the PHP coding conventions page.

使用法

use Wikimedia\AtEase\AtEase;

// Suppress warnings in a block of code:
AtEase::suppressWarnings();
$content = file_get_contents( 'foobar.txt' );
AtEase::restoreWarnings();

// ..or in a callback function:
AtEase::quietCall( 'file_get_contents', 'foobar.txt' );

Code stewardship

関連項目

外部リンク

警告: DISPLAYTITLE「at-ease/ja」が、その前に書かれているDISPLAYTITLE「at-ease」を上書きしています。