php func_get_args a> - bir işlevin bağımsız değişken listesi içeren bir dizi döndürür
döndürür numeric index array strong>
biz associative array strong>, yani anahtar => değer çifti olsun hangi php herhangi bir fonksiyon / yol yoktur
i örnekle açıklayan m:
test.php
<?php
function foo() {
include './fga.inc';
}
$x=20;
$y=30;
foo($x, $y);
?>
fga.inc
<?php
$args = func_get_args();
echo "<pre>";
print_r($args);
echo "</pre>";
?>
hangi gereken döner
array (
'x'=> 20,
'y' => 30,
)