sql >> データベース >  >> Database Tools >> phpMyAdmin

特定の時間を使用してPHPをリダイレクトする

    PHPのdateを利用する 現在の時刻/日付をチェックする機能。別のファイルにリダイレクトするには、header("Location: ..")を使用するだけです。 302リダイレクトを実行する関数。

    要件の説明から理解できることの簡単なサンプルを次に示します。

    <?php
    
        $redirectLocation = '';
    
        $dayOfWeek = date('l'); // A full textual representation of the day of the week
        $weekendDays = array('Saturday', 'Sunday'); // Array of weekend days
        $currentTime = (date('G').date('i'))*1; // Get current time in the form of numbers
    
        // If is weekend, redirect to weekend.php
        if(in_array( $dayOfWeek, $weekendDays )) {
            $redirectLocation = 'weekend.php';
        }
    
        // Else handle weekday day time (7.30 - 15.00)
        else if( $currentTime >= 730 && $currentTime <= 1500 ) {
            $redirectLocation = 'index1.php';
        }
    
    
        // Else handle weekday evening time
        else {
            $redirectLocation = 'night.php';
        }
    
        // Do the redirecting
        header("Location: ".$redirectLocation);
        exit();
        ?>
    


    1. PHPMyAdminWindowsXAMPPにMySQL拡張機能の問題がありません

    2. PHPMyAdmin-合計レコード数は異なります

    3. mysqlで自動増分をハッシュする方法

    4. SQL Server Management StudioとExpressエディションの違いは何ですか?