phpMyAdmin
 sql >> Teknologi Basis Data >  >> Database Tools >> phpMyAdmin

redirect PHP menggunakan waktu tertentu

Manfaatkan date PHP berfungsi untuk memeriksa waktu/tanggal saat ini. Untuk mengalihkan ke file lain, cukup gunakan header("Location: ..") berfungsi untuk melakukan pengalihan 302.

Berikut adalah contoh cepat dari apa yang dapat saya pahami dari deskripsi kebutuhan Anda:

<?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. DBeaver
  2.   
  3. phpMyAdmin
  4.   
  5. Navicat
  6.   
  7. SSMS
  8.   
  9. MySQL Workbench
  10.   
  11. SQLyog
  1. Buat tampilan tanpa hak SUPER di phpMyAdmin

  2. MySQL Tampilkan Hasil Null di Query - Dengan INNER JOIN

  3. Ekspor database Firebird ke sql

  4. Apa masalah dengan 10 digit ponsel tidak ada data di mysql?

  5. Menyalin Tabel Database dengan PhpMyAdmin