PHP $ anahtar gibi tüm işlev argümanlarını olsun =>

0 Cevap
<?php
function register_template(){
    print_r(func_get_args());
    # the result was an array ( [0] => my template [1] => screenshot.png [2] => nice template .. ) 

}

register_template(     # unkown number of arguments
    $name = "my template",
    $screenshot = "screenshot.png",
    $description = "nice template .. "
)
?>

ANCAK, ben $ olarak sonuç dizi anahtar => $ değer biçimi istiyorum, $ anahtar parametre adını temsil eder.

0 Cevap