I değişkeninin değeri geçerken PHP Fonksiyonu ile yardıma mı ihtiyacınız var, bu işe yaramazsa

0 Cevap php

Burada bir php fonksiyonu var ve mükemmel çalışıyor.

$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='') {

    global $values;

    if(!empty($id2)) {
        $title = $values[$id][$id2];
    }
    else {
         $title = $values[$id]; 
    }

    echo $title;

}

I çalıştırdığınızda bu <?php show(other,asp); ?> aktif sunucu sayfaları görüntüler ve çalışır, ama bunu bu şekilde yaptığınızda bir hata gösteriyor

<?php

$lang = 'other,asp'

show ($lang);

?>

Bu işe yaramazsa., Bana yardım edin

PS: Ben tek bir değer içeren (hayır virgül) değişken geçmek eğer çalışıyor

0 Cevap