Kullanmak için hangi sınıf belirlemek için bir türünü belirtebilirsiniz PHP bir arayüz oluşturma,

0 Cevap php

Ben "PickupPoints" için bir arabirim oluşturma ediyorum, Her alma noktası bulunan tüm toplama noktaları ve pikap nokta detaylarını ve belki gelecekte daha fazla bilgi iade edebilmek gerekir. Aşağıda kod ile tamam:

<?php

interface iPickupPoint
{
    public function getPickupPoints($countryCode, $postalCode, $city);
    public function getPickupPointDetails($pickupPointId);
}


class PickupPoint1 implements iPickupPoint{
    ...
}

class PickupPoint2 implements iPickupPoint{
    ...
}

The problem is that I don't want to call the classes of PickupPoint1, PickupPoint2, .. them selves. I want a class like PickupPoint(PickupPointType) so I just want to give the type of pickup point and the types need to be PickupPoint1, PickupPOint2, ..

Bu nasıl yapılabilir? Bu bile mümkün mü? Bu iyi bir uygulama mı?

0 Cevap