|
date_sunrise指定した日付と場所についての日の出時刻を返す 警告
この関数は PHP 8.1.0 で 非推奨 になります。 この機能に頼らないことを強く推奨します。 代わりに date_sun_info を使ってください。 説明
#[\Deprecated]
stringintfloatfalse date_sunrise(
int $timestamp,int $returnFormat = SUNFUNCS_RET_STRING,floatnull $latitude = null,floatnull $longitude = null,floatnull $zenith = null,floatnull $utcOffset = null)
date_sunrise は、与えられた日付
( パラメータ
戻り値
日の出時刻を、指定した エラー / 例外
すべての日付/時刻関数は、
有効なタイムゾーンが設定されていない場合に 変更履歴
例
例1 date_sunrise の例 上の例の出力は、 たとえば以下のようになります。 Deprecated: Constant SUNFUNCS_RET_STRING is deprecated in script on line 10 Deprecated: Function date_sunrise() is deprecated since 8.1, use date_sun_info() instead in script on line 10 Mon Dec 20 2004, sunrise time : 08:54 例2 No sunrise 上の例の出力は以下となります。 Deprecated: Constant SUNFUNCS_RET_STRING is deprecated in script on line 3 Deprecated: Function date_sunrise() is deprecated since 8.1, use date_sun_info() instead in script on line 3 bool(false) 参考
|