Ruby "uyarısı" taklit etmek için en iyi yolu

0 Cevap php

In Ruby

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]

In PHP (5.3)

function my_func($foo, $bar, ... ){
  #...
}

PHP bunu yapmak için en iyi yolu nedir?

0 Cevap