def my_func(foo,bar,*zim) [foo, bar, zim].collect(&:inspect) end puts my_func(1,2,3,4,5) # 1 # 2 # [3, 4, 5]
function my_func($foo, $bar, ... ){ #... }
PHP bunu yapmak için en iyi yolu nedir?