ホームページ >バックエンド開発 >PHPチュートリアル >PHP タイムスタンプを人間が判読できる「以前の」文字列に変換するにはどうすればよいですか?

PHP タイムスタンプを人間が判読できる「以前の」文字列に変換するにはどうすればよいですか?

Barbara Streisand
Barbara Streisandオリジナル
2024-12-23 13:28:05815ブラウズ

How to Convert PHP Timestamps to Human-Readable

PHP でタイムスタンプを人間が判読できる時刻に変換する

PHP では、time_elapsed_string() 関数を使用してタイムスタンプを経過時間文字列に変換できます。

機能定義

function time_elapsed_string($datetime, $full = false) {
    // Get the current date and time
    $now = new DateTime;

    // Create a DateTime object from the input timestamp
    $ago = new DateTime($datetime);

    // Calculate the difference between the current time and the input timestamp
    $diff = $now->diff($ago);

    // Convert weeks and days to days
    $diff->w = floor($diff->d / 7);
    $diff->d -= $diff->w * 7;

    // Create an array of time units and their corresponding English names
    $string = [
        'y' => 'year',
        'm' => 'month',
        'w' => 'week',
        'd' => 'day',
        'h' => 'hour',
        'i' => 'minute',
        's' => 'second',
    ];

    // Iterate through the time units and add them to the output string if they are greater than 0
    foreach ($string as $k => &$v) {
        if ($diff->$k) {
            $v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : '');
        } else {
            unset($string[$k]);
        }
    }

    // If the `$full` parameter is false, only return the first time unit
    if (!$full) $string = array_slice($string, 0, 1);

    // Return the formatted time elapsed string
    return $string ? implode(', ', $string) . ' ago' : 'just now';
}

使用法

echo time_elapsed_string('2013-05-01 00:22:35'); // Output: 4 months ago
echo time_elapsed_string('@1367367755');          // Output: 4 months ago
echo time_elapsed_string('2013-05-01 00:22:35', true); // Output: 4 months, 2 weeks, 3 days, 1 hour, 49 minutes, 15 seconds ago

以上がPHP タイムスタンプを人間が判読できる「以前の」文字列に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。