| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
DateTime::getLastErrorsdate_get_last_errors(PHP 5 >= 5.3.0, PHP 7) DateTime::getLastErrors -- date_get_last_errors — 警告およびエラーを返す 説明オブジェクト指向型
public static array DateTime::getLastErrors
( void
)
手続き型 日付/時刻文字列のパース時に見つかった警告やエラーの配列を返します。 パラメータこの関数にはパラメータはありません。 返り値警告やエラーに関する情報を含む配列を返します。 例例1 DateTime::getLastErrors() の例 オブジェクト指向型
<?php 手続き型
<?php 上の例の出力は以下となります。 Array ( [warning_count] => 1 [warnings] => Array ( [6] => Double timezone specification ) [error_count] => 1 [errors] => Array ( [0] => The timezone could not be found in the database ) ) この出力のインデックス 6 と 0 は、エラーが発生した文字列内での文字の位置を表します。 |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「DateTime::getLastErrors - 警告およびエラーを返す」をGoogle検索
|