PHP sorularınızı Arrays - bkz Bu sözdizimi, bir dizi öğelerinin erişmek için kullanılır.
Here, you are working with an associative array, called $config
, that's contain at least two entries : business
and different_text
.
Considering the name of the $config
variable, you have at least two advantages :
- ilgili değişkenler tek değişkenli gruplanmış - kolay bir araya onlara sahip
- Yalnızca bir değişken (
$config
) ile çalışmak
Ve tabii ki:
- Sen yeni bir değişken oluşturmak zorunda kalmadan yapılandırma seçenekleri herhangi bir sayıda ekleyebilirsiniz: sadece
$config
diziye yeni bir öğe eklemek.
That being said, of course, maybe the paypal API you are using is actually expecting some data passed as an associative array containing those elements -- if it is the case, you don't have much of a choice.