Bu php fonksiyonu ile yardıma ihtiyacınız

0 Cevap php

İşte benim php kod

$values = array(

        'php' => 'php hypertext processor',

        'other' => array(
            'html' => 'hyper text markup language',
            'css' => 'cascading style sheet',
            'asp' => 'active server pages',
        )

);


function show($id='php', $id2='others') {

    global $values;

    if(isset($id2)) {
        $title = $values[$id];
    }
    elseif(empty($id2)) {
        $title = $values[$id][$id2];
    }

    return $title;

}

i ne zaman

echo show('php');

o "php köprü işlemci" gösterir

but i ne zaman

echo show('other','asp');

düzgün çalışmıyor, bu "aktif sunucu sayfaları" göstermesi gerekir

Nedir hata i yapıyorum? Herkes bana yardımcı olabilir misiniz?

0 Cevap