Posts by José Neto • 123 points
1 post
-
12
votes7
answers552
viewsQ: What is the difference between these parameters (array) in these methods?
I see it a lot in methods class Exemplo { public function exemplo1(array $parameters = array()) { } public function exemplo2(array $parameters) { } public function exemplo3($parameters = array()) {…