PHP Anahtarı Nav sistemi - nasıl ben 2 GET değişkenleri kullanmak için ayarlayabilirsiniz

2 Cevap php

Ben navigasyon menüsü için bir aşağıdaki PHP anahtarını kullanın:

<?php include("header.php"); 
    if (! isset($_GET['page']))
    {
        include('./home.php');

    } else {    
        $page = $_GET['page'];  
        switch($page)
        {
            case 'about':
                include('./about.php');
                break;  
            case 'services':
                include('./services.php');
                break;  
            case 'gallery':
                include('./gallery.php');
                break;      
            case 'photos':
                include('./photos.php');
                break;  
            case 'events':
                include('./events.php');
                break;  
            case 'contact':
                include('./contact.php');
                break;
        }
    }
    include("footer.php"); 
    ?>

Benim "Fotoğraflar" bölümüne gidin, ben fotoğraflar içinde diğer galeriler için bir alt liste için gidiyorum.

Ben şu anda bir sayfada olduğumda, benim url bu gibi görünüyor:

index.php?page=photos

Ben ben benim url bu gibi bakmak olabilir CARS bölümüne gittiğinizde öylesine eklemeniz gereken PHP kodu bilmek istiyorum:

index.php?page=photos&section=cars

?

2 Cevap

Kavramsal olarak, sadece anahtarı başka bir iç içe geçmiş düzey eklemek veya eğer / o testleri değil mi?

Bu mevcut anahtarının içine sıkışmış olabilir, ancak bir işlev koymak için daha okunaklı olabilir

case: 'photos'
  $section = photo_switch( $_GET['section'] );
  include( $section );
  break;

Yoksa sadece kullanıcı girişi temizlemek ve onu kullanabilirsiniz:

case 'photos'
  $section = preg_replace( "/\W/", "", $_GET['section'] );
  include( './photos/' . $section . '.php' );
  break

Ben aşağıdaki yaklaşımı alacaktı. Bu, keyfi dosya yolları ve IMHO sahip olmanızı sağlar genişletmek ve okumak için basit şeyler yapar.

<?php
    include("header.php"); 

    $page = isset($_GET['page']) ? trim(strtolower($_GET['page']))       : "home";

    $allowedPages = array(
        'home'     => './home.php',
        'about'    => './about.php',
        'services' => './services.php',
        'gallery'  => './gallery.php',
        'photos'   => './photos.php',
        'events'   => './events.php',
        'contact'  => './contact.php'
    );

    include( isset($allowedPages[$page]) ? $allowedPages[$page] : $allowedPages["home"] );

    include("footer.php"); 
?>

Bu aynı fikir uzatılabilir photos.php include (ya da bu konuda herhangi bir diğer dosya) olabilecek farklı bölümleri ile çalışmak için:

photos.php

<?php
    $section = isset($_GET['section']) ? trim(strtolower($_GET['section'])) : "members";

    $allowedPages = array(
        'members' => './photos/members.php',
        'cars'    => './photos/cars.php'
    );

    include( isset($allowedPages[$section]) ? $allowedPages[$section] : $allowedPages["members"] );
?>