PHP और Enumerations


1149

मुझे पता है कि PHP में देशी एन्यूमरेशन्स नहीं हैं। लेकिन मैं जावा दुनिया से उनका आदी हो गया हूं। मैं पूर्वनिर्धारित मूल्यों को देने के लिए एक तरह से एनम का उपयोग करना पसंद करूंगा, जो आईडीई के ऑटो-पूर्ण सुविधाओं को समझ सकता है।

स्थिरांक चाल करते हैं, लेकिन नाम स्थान टकराव की समस्या है और (या वास्तव में क्योंकि ) वे वैश्विक हैं। Arrays में नाम स्थान की समस्या नहीं है, लेकिन वे बहुत अस्पष्ट हैं, उन्हें रनटाइम और IDEs पर शायद ही कभी लिखा जा सकता है (कभी नहीं!) पता है कि उनकी कुंजियों को कैसे ऑटोफ़िल करना है।

क्या आपके पास आमतौर पर उपयोग किए जाने वाले कोई समाधान / समाधान हैं? क्या किसी को याद है कि क्या PHP के लोगों के पास कोई विचार या निर्णय है?



1
मैंने फंक्शन के चारों ओर एक काम बनाया है जो निरंतर रूप से बिटवाइज़ को एनुमरेट करता है या नहीं। क्या आपने पहले यह नहीं पूछा, लेकिन मेरे पास यहाँ वर्ग चर की तुलना में बेहतर समाधान है: stackoverflow.com/questions/3836385/…
नूडलऑफडॉट


क्या आप लगातार समस्या के बारे में थोड़ा और साझा करने का मन बनाते हैं? "स्थिरांक चाल करते हैं, लेकिन नाम स्थान टकराव की समस्या है और (या वास्तव में क्योंकि) वे वैश्विक हैं।"
जूडिंग

जवाबों:


1492

उपयोग के मामले के आधार पर, मैं आमतौर पर निम्नलिखित की तरह कुछ सरल का उपयोग करूंगा :

abstract class DaysOfWeek
{
    const Sunday = 0;
    const Monday = 1;
    // etc.
}

$today = DaysOfWeek::Sunday;

हालांकि, अन्य उपयोग के मामलों में स्थिरांक और मूल्यों के अधिक सत्यापन की आवश्यकता हो सकती है। प्रतिबिंब, और कुछ अन्य नोटों के बारे में नीचे दी गई टिप्पणियों के आधार पर , यहां एक विस्तृत उदाहरण दिया गया है, जो मामलों की एक व्यापक श्रेणी की बेहतर सेवा कर सकता है:

abstract class BasicEnum {
    private static $constCacheArray = NULL;

    private static function getConstants() {
        if (self::$constCacheArray == NULL) {
            self::$constCacheArray = [];
        }
        $calledClass = get_called_class();
        if (!array_key_exists($calledClass, self::$constCacheArray)) {
            $reflect = new ReflectionClass($calledClass);
            self::$constCacheArray[$calledClass] = $reflect->getConstants();
        }
        return self::$constCacheArray[$calledClass];
    }

    public static function isValidName($name, $strict = false) {
        $constants = self::getConstants();

        if ($strict) {
            return array_key_exists($name, $constants);
        }

        $keys = array_map('strtolower', array_keys($constants));
        return in_array(strtolower($name), $keys);
    }

    public static function isValidValue($value, $strict = true) {
        $values = array_values(self::getConstants());
        return in_array($value, $values, $strict);
    }
}

BasicEnum का विस्तार करने वाला एक साधारण एनम वर्ग बनाकर, अब आपके पास सरल इनपुट सत्यापन के लिए तरीकों का उपयोग करने की क्षमता है:

abstract class DaysOfWeek extends BasicEnum {
    const Sunday = 0;
    const Monday = 1;
    const Tuesday = 2;
    const Wednesday = 3;
    const Thursday = 4;
    const Friday = 5;
    const Saturday = 6;
}

DaysOfWeek::isValidName('Humpday');                  // false
DaysOfWeek::isValidName('Monday');                   // true
DaysOfWeek::isValidName('monday');                   // true
DaysOfWeek::isValidName('monday', $strict = true);   // false
DaysOfWeek::isValidName(0);                          // false

DaysOfWeek::isValidValue(0);                         // true
DaysOfWeek::isValidValue(5);                         // true
DaysOfWeek::isValidValue(7);                         // false
DaysOfWeek::isValidValue('Friday');                  // false

एक साइड नोट के रूप में, किसी भी समय मैं कम से कम एक बार एक स्थिर / कांस्ट क्लास पर प्रतिबिंब का उपयोग करता हूं, जहां डेटा नहीं बदलेगा (जैसे कि एनम में), मैं उन प्रतिबिंब कॉल के परिणामों को कैश करता हूं, क्योंकि हर बार ताजा प्रतिबिंब वस्तुओं का उपयोग करते हुए। अंततः एक ध्यान देने योग्य प्रदर्शन प्रभाव होगा (कई एनमों के लिए एक सहायक सरणी में संग्रहीत)।

अब जब अधिकांश लोगों ने अंत में कम से कम 5.3 में अपग्रेड किया है, और SplEnumउपलब्ध है, तो यह निश्चित रूप से एक व्यवहार्य विकल्प है - जब तक कि आप अपने कोडबस में वास्तविक एनम इंस्टेंटिएशन होने की परंपरागत रूप से अचिंतनीय धारणा को ध्यान में नहीं रखते हैं । उपरोक्त उदाहरण में, BasicEnumऔर DaysOfWeekबिल्कुल भी नहीं किया जा सकता है, और न ही उन्हें होना चाहिए।


70
मैं भी इस का उपयोग करें। आप वर्ग बनाने पर भी विचार कर सकते हैं abstractऔर finalइसलिए इसे त्वरित या विस्तारित नहीं किया जा सकता है।
रियुगी

21
आप एक वर्ग abstractऔर दोनों बना सकते हैं final? मुझे पता है कि जावा में इसकी अनुमति नहीं है। आप php में ऐसा कर सकते हैं?
corsiKa

20
@ryeguy ऐसा लगता है कि आप इसे और दोनों नहीं बना सकते । उस मामले में, मैं सार के लिए जाना था। abstractfinal
निकोल

45
अमूर्त या अंतिम के बारे में; मैं उन्हें अंतिम रूप देता हूं और उन्हें एक खाली निजी निर्माता देता
हूं

21
0 का उपयोग करने के साथ सावधान रहें, ताकि आप किसी भी अप्रत्याशित फ़ॉसी तुलना समस्याओं में न चलें, जैसे nullकि एक switchबयान में और दोस्तों के साथ तुल्यता । वहाँ गया।
२०

185

एक देशी विस्तार भी है। द स्प्लीनम

SplEnum PHP में मूल रूप से गणना करने वाली वस्तुओं का अनुकरण और निर्माण करने की क्षमता देता है।

http://www.php.net/manual/en/class.splenum.php

ध्यान:

https://www.php.net/manual/en/spl-types.installation.php

PECL एक्सटेंशन PHP के साथ बंडल नहीं है।

इस PECL एक्सटेंशन के लिए एक DLL वर्तमान में अनुपलब्ध है।


4
यहाँ एक उदाहरण है, स्प्लेनम के साथ: dreamincode.net/forums/topic/201638-enum-in-php
नॉर्ड्स

4
मैंने वापस रोल किया, मुझे यह पसंद है जब मैं लिंक देख सकता हूं। यह मुझे संदर्भ जानकारी देता है।
मार्कस

5
मैं फिर से लुढ़क गया। मैं नहीं चाहता कि आप लोग लिंक को संपादित करें।
मार्क

6
इसका उपयोग करने में सावधानी बरतें। SPL प्रकार प्रायोगिक हैं: "यह एक्सटेंशन EXPERIMENTAL है। इस एक्सटेंशन का व्यवहार जिसमें इसके फ़ंक्शंस के नाम शामिल हैं और इस एक्सटेंशन के आसपास के किसी भी अन्य दस्तावेज़ को PHP के भविष्य के रिलीज में बिना किसी नोटिस के बदल सकते हैं। इस एक्सटेंशन का उपयोग आपके जोखिम पर किया जाना चाहिए। "
बेज़मैन

6
SplEnum PHP के साथ बंडल नहीं है, इसे SPL_Types extention की
Kwadz

46

वर्ग स्थिरांक के बारे में क्या?

<?php

class YourClass
{
    const SOME_CONSTANT = 1;

    public function echoConstant()
    {
        echo self::SOME_CONSTANT;
    }
}

echo YourClass::SOME_CONSTANT;

$c = new YourClass;
$c->echoConstant();

मैं इस सरल दृष्टिकोण को पसंद करता हूं
डेविड लेमन

echoConstantसे बदला जा सकता है __toString। और फिर बसecho $c
जस्टिनस

35

ऊपर दिया गया शीर्ष उत्तर शानदार है। हालांकि, यदि आप extendइसे दो अलग-अलग तरीकों से करते हैं, तो जो भी कार्य करने के लिए कॉल करता है, उसमें सबसे पहले विस्तार होता है, जिससे कैश पैदा होगा। इस कैश का उपयोग बाद की सभी कॉलों द्वारा किया जाएगा, चाहे कोई भी कॉल हो ...

इसे हल करने के लिए, चर और पहले फ़ंक्शन को निम्न से बदलें:

private static $constCacheArray = null;

private static function getConstants() {
    if (self::$constCacheArray === null) self::$constCacheArray = array();

    $calledClass = get_called_class();
    if (!array_key_exists($calledClass, self::$constCacheArray)) {
        $reflect = new \ReflectionClass($calledClass);
        self::$constCacheArray[$calledClass] = $reflect->getConstants();
    }

    return self::$constCacheArray[$calledClass];
}

2
यह बहुत मुद्दा था। ब्रायन या एडिट विशेषाधिकार वाले किसी व्यक्ति को स्वीकृत उत्तर में इसे छूना चाहिए। मैंने अपने कोड में getConstants () फ़ंक्शन में 'self ::' के बजाय 'static ::' पद्धति का उपयोग करके इसे हल किया और चाइल्ड एनम में $ constCache की फिर से घोषणा की।
Sp3igel

यह सेक्सी नहीं हो सकता है, लेकिन एक इंटरफ़ेस निरंतर का उपयोग करना PHP में जाने का सबसे अच्छा तरीका हो सकता है।
एंथनी रटलेज

27

मैंने स्थिरांक के साथ कक्षाओं का उपयोग किया:

class Enum {
    const NAME       = 'aaaa';
    const SOME_VALUE = 'bbbb';
}

print Enum::NAME;

27

मैं interfaceइसके बजाय का उपयोग करें class:

interface DaysOfWeek
{
    const Sunday = 0;
    const Monday = 1;
    // etc.
}

var $today = DaysOfWeek::Sunday;

6
class Foo implements DaysOfWeek { }और फिर Foo::Sunday... क्या?
डेन लैग

3
प्रश्न के लेखक दो चीजों के लिए एक समाधान के लिए पूछता है: IDEs द्वारा नाम स्थान और ऑटो-पूरा। जैसा कि शीर्ष-रेटेड उत्तर ने सुझाव दिया है, सबसे आसान तरीका है class(या interface, जो कि वरीयता का मामला है)।
एंडी टी

4
इंटरफेस का उपयोग कक्षा कार्यान्वयन अखंडता को लागू करने के लिए किया जाता है, यह एक इंटरफेस के दायरे से बाहर है
user3886650

2
@ user3886650 इंटरफेस निरंतर मूल्यों को बनाए रखने के लिए जावा में उपयोग और कर सकते हैं। तो आप केवल निरंतर मूल्यों को प्राप्त करने के लिए किसी क्लास को तुरंत करने के लिए मजबूर नहीं होते हैं और कोई भी आईडीई उन पर कोड पूरा करने की पेशकश करता है। इसके अलावा, यदि आप एक वर्ग बनाते हैं जो उस इंटरफ़ेस को लागू करता है तो यह उन सभी स्थिरांक को विरासत में देगा - कभी-कभी काफी आसान होता है।
एलेक्स

@ user3886650 सच है, लेकिन PHP में, इंटरफेस में निरंतरता हो सकती है। इसके अतिरिक्त, इन इंटरफ़ेस स्थिरांक को कक्षाओं, या उनके बच्चों को लागू करने के द्वारा ओवरराइड नहीं किया जा सकता है। वास्तव में, यह PHP के संदर्भ में सबसे अच्छा जवाब है, क्योंकि जो कुछ भी ओवरराइड किया जा सकता है वह सही मायने में एक निरंतर की तरह काम नहीं कर रहा है। निरंतर का अर्थ निरंतर होना चाहिए, कभी-कभी नहीं (भले ही कई बार बहुरूपता उपयोगी हो सकती है)।
एंथोनी रटलेज

25

मैंने यहां कुछ अन्य उत्तरों पर टिप्पणी की है, इसलिए मुझे लगा कि मैं भी इसमें वजन करूंगा। दिन के अंत में, चूंकि PHP टाइप किए गए गणना का समर्थन नहीं करता है, आप दो तरीकों में से एक पर जा सकते हैं: टाइप किए गए गणना को हैक करें, या इस तथ्य के साथ रहें कि वे प्रभावी ढंग से हैक करना बेहद कठिन हैं।

मैं इस तथ्य के साथ रहना पसंद करता हूं, और इसके बजाय उस constविधि का उपयोग करता हूं जो अन्य उत्तरों ने किसी तरह या किसी अन्य तरीके से उपयोग की है:

abstract class Enum
{

    const NONE = null;

    final private function __construct()
    {
        throw new NotSupportedException(); // 
    }

    final private function __clone()
    {
        throw new NotSupportedException();
    }

    final public static function toArray()
    {
        return (new ReflectionClass(static::class))->getConstants();
    }

    final public static function isValid($value)
    {
        return in_array($value, static::toArray());
    }

}

एक उदाहरण गणना:

final class ResponseStatusCode extends Enum
{

    const OK                         = 200;
    const CREATED                    = 201;
    const ACCEPTED                   = 202;
    // ...
    const SERVICE_UNAVAILABLE        = 503;
    const GATEWAY_TIME_OUT           = 504;
    const HTTP_VERSION_NOT_SUPPORTED = 505;

}

का उपयोग करते हुए Enumएक आधार वर्ग है जहाँ से सभी अन्य enumerations विस्तार के रूप में इस तरह के रूप सहायक तरीकों, के लिए अनुमति देता है toArray, isValid, और इतने पर। मेरे लिए, टाइप किए गए गणना ( और उनके उदाहरणों को प्रबंधित करना ) बहुत गन्दा है।


काल्पनिक

यदि , एक __getStaticजादू विधि ( और अधिमानतः एक __equalsजादू पद्धति भी मौजूद है ) तो इसमें से एक बहु-प्रकार के पैटर्न के साथ कम किया जा सकता है।

( निम्नलिखित काल्पनिक है; यह काम नहीं करेगा , हालांकि शायद एक दिन यह होगा )

final class TestEnum
{

    private static $_values = [
        'FOO' => 1,
        'BAR' => 2,
        'QUX' => 3,
    ];
    private static $_instances = [];

    public static function __getStatic($name)
    {
        if (isset(static::$_values[$name]))
        {
            if (empty(static::$_instances[$name]))
            {
                static::$_instances[$name] = new static($name);
            }
            return static::$_instances[$name];
        }
        throw new Exception(sprintf('Invalid enumeration value, "%s"', $name));
    }

    private $_value;

    public function __construct($name)
    {
        $this->_value = static::$_values[$name];
    }

    public function __equals($object)
    {
        if ($object instanceof static)
        {
            return $object->_value === $this->_value;
        }
        return $object === $this->_value;
    }

}

$foo = TestEnum::$FOO; // object(TestEnum)#1 (1) {
                       //   ["_value":"TestEnum":private]=>
                       //   int(1)
                       // }

$zap = TestEnum::$ZAP; // Uncaught exception 'Exception' with message
                       // 'Invalid enumeration member, "ZAP"'

$qux = TestEnum::$QUX;
TestEnum::$QUX == $qux; // true
'hello world!' == $qux; // false

मुझे वास्तव में इस उत्तर की सरलता पसंद है। यह इस तरह की बात है कि आप बाद में वापस आ सकते हैं और जल्दी से समझ सकते हैं कि यह कैसे काम करता है जैसे कि आपने किसी तरह का हैक किया। एक शर्म की बात है कि इसमें अधिक वोट नहीं हैं।
रिएक्टगुलर

23

वैसे, एक साधारण जावा के लिए जैसे कि php में एनम, मैं उपयोग करता हूं:

class SomeTypeName {
    private static $enum = array(1 => "Read", 2 => "Write");

    public function toOrdinal($name) {
        return array_search($name, self::$enum);
    }

    public function toString($ordinal) {
        return self::$enum[$ordinal];
    }
}

और इसे कॉल करने के लिए:

SomeTypeName::toOrdinal("Read");
SomeTypeName::toString(1);

लेकिन मैं एक PHP शुरुआत कर रहा हूँ, सिंटैक्स के साथ संघर्ष कर रहा है ताकि यह सबसे अच्छा तरीका न हो। मैंने क्लास कांस्टेंट के साथ कुछ प्रयोग किया, यह मान से निरंतर नाम प्राप्त करने के लिए परावर्तन का उपयोग करके, हो सकता है कि वह नट हो।


अच्छा जवाब, अधिकांश अन्य उत्तर कक्षाओं का उपयोग कर रहे हैं। हालांकि आपके पास नेस्टेड कक्षाएं नहीं हो सकती हैं।
कीपो

इससे लाभ यह है कि फ़ॉरच के साथ मूल्यों के माध्यम से पुनरावृति करने में सक्षम है। और एक अवैध मूल्य पकड़ा नहीं है कि प्रतिबंध।
बॉब स्टीन

2
आईडीई में कोई भी ऑटो पूरा नहीं होता है, इसलिए अनुमान कार्य को उत्तेजित करेगा। स्थिरांक ऑटो पूरा करने में सक्षम होगा, बेहतर लगता है।
क्रेकडीड

19

चार साल बाद मैं फिर इस पार आया। मेरा वर्तमान तरीका यह है क्योंकि यह IDE में कोड पूरा करने के साथ-साथ सुरक्षा के लिए भी अनुमति देता है:

आधार वर्ग:

abstract class TypedEnum
{
    private static $_instancedValues;

    private $_value;
    private $_name;

    private function __construct($value, $name)
    {
        $this->_value = $value;
        $this->_name = $name;
    }

    private static function _fromGetter($getter, $value)
    {
        $reflectionClass = new ReflectionClass(get_called_class());
        $methods = $reflectionClass->getMethods(ReflectionMethod::IS_STATIC | ReflectionMethod::IS_PUBLIC);    
        $className = get_called_class();

        foreach($methods as $method)
        {
            if ($method->class === $className)
            {
                $enumItem = $method->invoke(null);

                if ($enumItem instanceof $className && $enumItem->$getter() === $value)
                {
                    return $enumItem;
                }
            }
        }

        throw new OutOfRangeException();
    }

    protected static function _create($value)
    {
        if (self::$_instancedValues === null)
        {
            self::$_instancedValues = array();
        }

        $className = get_called_class();

        if (!isset(self::$_instancedValues[$className]))
        {
            self::$_instancedValues[$className] = array();
        }

        if (!isset(self::$_instancedValues[$className][$value]))
        {
            $debugTrace = debug_backtrace();
            $lastCaller = array_shift($debugTrace);

            while ($lastCaller['class'] !== $className && count($debugTrace) > 0)
            {
                $lastCaller = array_shift($debugTrace);
            }

            self::$_instancedValues[$className][$value] = new static($value, $lastCaller['function']);
        }

        return self::$_instancedValues[$className][$value];
    }

    public static function fromValue($value)
    {
        return self::_fromGetter('getValue', $value);
    }

    public static function fromName($value)
    {
        return self::_fromGetter('getName', $value);
    }

    public function getValue()
    {
        return $this->_value;
    }

    public function getName()
    {
        return $this->_name;
    }
}

उदाहरण एनम:

final class DaysOfWeek extends TypedEnum
{
    public static function Sunday() { return self::_create(0); }    
    public static function Monday() { return self::_create(1); }
    public static function Tuesday() { return self::_create(2); }   
    public static function Wednesday() { return self::_create(3); }
    public static function Thursday() { return self::_create(4); }  
    public static function Friday() { return self::_create(5); }
    public static function Saturday() { return self::_create(6); }      
}

उदाहरण उपयोग:

function saveEvent(DaysOfWeek $weekDay, $comment)
{
    // store week day numeric value and comment:
    $myDatabase->save('myeventtable', 
       array('weekday_id' => $weekDay->getValue()),
       array('comment' => $comment));
}

// call the function, note: DaysOfWeek::Monday() returns an object of type DaysOfWeek
saveEvent(DaysOfWeek::Monday(), 'some comment');

ध्यान दें कि समान एनम प्रविष्टि के सभी उदाहरण समान हैं:

$monday1 = DaysOfWeek::Monday();
$monday2 = DaysOfWeek::Monday();
$monday1 === $monday2; // true

आप इसे स्विच स्टेटमेंट के अंदर भी उपयोग कर सकते हैं:

function getGermanWeekDayName(DaysOfWeek $weekDay)
{
    switch ($weekDay)
    {
        case DaysOfWeek::Monday(): return 'Montag';
        case DaysOfWeek::Tuesday(): return 'Dienstag';
        // ...
}

आप नाम या मान द्वारा एक एनम प्रविष्टि भी बना सकते हैं:

$monday = DaysOfWeek::fromValue(2);
$tuesday = DaysOfWeek::fromName('Tuesday');

या आप मौजूदा एनुम प्रविष्टि से सिर्फ नाम (यानी फ़ंक्शन नाम) प्राप्त कर सकते हैं:

$wednesday = DaysOfWeek::Wednesday()
echo $wednesDay->getName(); // Wednesday

एक निजी कंस्ट्रक्टर के लिए +1। मैं हेल्पर एब्स्ट्रैक्ट क्लास नहीं बनाऊंगा, बस एक साधारण क्लास, प्राइवेट कंस्ट्रक्टर और कुछconst Monday = DaysOfWeek('Monday');
कांगूर

9

मुझे यह पुस्तकालय जीथुब पर मिला और मुझे लगता है कि यह यहां के जवाबों का एक बहुत ही अच्छा विकल्प प्रदान करता है।

PHP Enum कार्यान्वयन SplEnum से प्रेरित है

  • आप टाइप-हिंट कर सकते हैं: function setAction(Action $action) {
  • आप तरीकों के साथ enum समृद्ध कर सकते हैं (उदाहरण के लिए format, parse, ...)
  • आप नए मूल्यों को जोड़ने के लिए एनम का विस्तार कर सकते हैं ( finalइसे रोकने के लिए अपनी एनम बनाएं )
  • आप सभी संभावित मूल्यों की सूची प्राप्त कर सकते हैं (नीचे देखें)

घोषणा

<?php
use MyCLabs\Enum\Enum;

/**
 * Action enum
 */
class Action extends Enum
{
    const VIEW = 'view';
    const EDIT = 'edit';
}

प्रयोग

<?php
$action = new Action(Action::VIEW);

// or
$action = Action::VIEW();

टाइप-हिंट एनम मान:

<?php
function setAction(Action $action) {
    // ...
}

1
यह सही उत्तर है (अब तक, enumPHP 7.x में जोड़ा गया है) क्योंकि यह टाइप करने की अनुमति देता है।
टोबिया

1
न केवल यह टाइप-हिंटिंग की अनुमति देता है, बल्कि __toString()जादू के कारण, यह आपको वह करने की अनुमति देता है जो आप आमतौर पर वास्तव में एनमों के साथ करना चाहते हैं - उन्हें switchया तो एक ifबयान में उपयोग करें , सीधे नक्षत्रों के मूल्यों के साथ तुलना करें। देशी एनम समर्थन, आईएमओ का सबसे अच्छा तरीका छोटा।
LinusR

7

यदि आपको ऐसी Enums का उपयोग करने की आवश्यकता है जो विश्व स्तर पर अद्वितीय हैं (यानी विभिन्न Enums के बीच तत्वों की तुलना करते हुए भी) और उपयोग करने में आसान हैं, तो निम्नलिखित कोड का उपयोग करने के लिए स्वतंत्र महसूस करें। मैंने कुछ विधियाँ भी जोड़ीं जो मुझे उपयोगी लगती हैं। आपको कोड के बहुत ऊपर टिप्पणियों में उदाहरण मिलेंगे।

<?php

/**
 * Class Enum
 * 
 * @author Christopher Fox <christopher.fox@gmx.de>
 *
 * @version 1.0
 *
 * This class provides the function of an enumeration.
 * The values of Enum elements are unique (even between different Enums)
 * as you would expect them to be.
 *
 * Constructing a new Enum:
 * ========================
 *
 * In the following example we construct an enum called "UserState"
 * with the elements "inactive", "active", "banned" and "deleted".
 * 
 * <code>
 * Enum::Create('UserState', 'inactive', 'active', 'banned', 'deleted');
 * </code>
 *
 * Using Enums:
 * ============
 *
 * The following example demonstrates how to compare two Enum elements
 *
 * <code>
 * var_dump(UserState::inactive == UserState::banned); // result: false
 * var_dump(UserState::active == UserState::active); // result: true
 * </code>
 *
 * Special Enum methods:
 * =====================
 *
 * Get the number of elements in an Enum:
 *
 * <code>
 * echo UserState::CountEntries(); // result: 4
 * </code>
 *
 * Get a list with all elements of the Enum:
 *
 * <code>
 * $allUserStates = UserState::GetEntries();
 * </code>
 *
 * Get a name of an element:
 *
 * <code>
 * echo UserState::GetName(UserState::deleted); // result: deleted
 * </code>
 *
 * Get an integer ID for an element (e.g. to store as a value in a database table):
 * This is simply the index of the element (beginning with 1).
 * Note that this ID is only unique for this Enum but now between different Enums.
 *
 * <code>
 * echo UserState::GetDatabaseID(UserState::active); // result: 2
 * </code>
 */
class Enum
{

    /**
     * @var Enum $instance The only instance of Enum (Singleton)
     */
    private static $instance;

    /**
     * @var array $enums    An array of all enums with Enum names as keys
     *          and arrays of element names as values
     */
    private $enums;

    /**
     * Constructs (the only) Enum instance
     */
    private function __construct()
    {
        $this->enums = array();
    }

    /**
     * Constructs a new enum
     *
     * @param string $name The class name for the enum
     * @param mixed $_ A list of strings to use as names for enum entries
     */
    public static function Create($name, $_)
    {
        // Create (the only) Enum instance if this hasn't happened yet
        if (self::$instance===null)
        {
            self::$instance = new Enum();
        }

        // Fetch the arguments of the function
        $args = func_get_args();
        // Exclude the "name" argument from the array of function arguments,
        // so only the enum element names remain in the array
        array_shift($args);
        self::$instance->add($name, $args);
    }

    /**
     * Creates an enumeration if this hasn't happened yet
     * 
     * @param string $name The class name for the enum
     * @param array $fields The names of the enum elements
     */
    private function add($name, $fields)
    {
        if (!array_key_exists($name, $this->enums))
        {
            $this->enums[$name] = array();

            // Generate the code of the class for this enumeration
            $classDeclaration =     "class " . $name . " {\n"
                        . "private static \$name = '" . $name . "';\n"
                        . $this->getClassConstants($name, $fields)
                        . $this->getFunctionGetEntries($name)
                        . $this->getFunctionCountEntries($name)
                        . $this->getFunctionGetDatabaseID()
                        . $this->getFunctionGetName()
                        . "}";

            // Create the class for this enumeration
            eval($classDeclaration);
        }
    }

    /**
     * Returns the code of the class constants
     * for an enumeration. These are the representations
     * of the elements.
     * 
     * @param string $name The class name for the enum
     * @param array $fields The names of the enum elements
     *
     * @return string The code of the class constants
     */
    private function getClassConstants($name, $fields)
    {
        $constants = '';

        foreach ($fields as $field)
        {
            // Create a unique ID for the Enum element
            // This ID is unique because class and variables
            // names can't contain a semicolon. Therefore we
            // can use the semicolon as a separator here.
            $uniqueID = $name . ";" . $field;
            $constants .=   "const " . $field . " = '". $uniqueID . "';\n";
            // Store the unique ID
            array_push($this->enums[$name], $uniqueID);
        }

        return $constants;
    }

    /**
     * Returns the code of the function "GetEntries()"
     * for an enumeration
     * 
     * @param string $name The class name for the enum
     *
     * @return string The code of the function "GetEntries()"
     */
    private function getFunctionGetEntries($name) 
    {
        $entryList = '';        

        // Put the unique element IDs in single quotes and
        // separate them with commas
        foreach ($this->enums[$name] as $key => $entry)
        {
            if ($key > 0) $entryList .= ',';
            $entryList .= "'" . $entry . "'";
        }

        return  "public static function GetEntries() { \n"
            . " return array(" . $entryList . ");\n"
            . "}\n";
    }

    /**
     * Returns the code of the function "CountEntries()"
     * for an enumeration
     * 
     * @param string $name The class name for the enum
     *
     * @return string The code of the function "CountEntries()"
     */
    private function getFunctionCountEntries($name) 
    {
        // This function will simply return a constant number (e.g. return 5;)
        return  "public static function CountEntries() { \n"
            . " return " . count($this->enums[$name]) . ";\n"
            . "}\n";
    }

    /**
     * Returns the code of the function "GetDatabaseID()"
     * for an enumeration
     * 
     * @return string The code of the function "GetDatabaseID()"
     */
    private function getFunctionGetDatabaseID()
    {
        // Check for the index of this element inside of the array
        // of elements and add +1
        return  "public static function GetDatabaseID(\$entry) { \n"
            . "\$key = array_search(\$entry, self::GetEntries());\n"
            . " return \$key + 1;\n"
            . "}\n";
    }

    /**
     * Returns the code of the function "GetName()"
     * for an enumeration
     *
     * @return string The code of the function "GetName()"
     */
    private function getFunctionGetName()
    {
        // Remove the class name from the unique ID 
        // and return this value (which is the element name)
        return  "public static function GetName(\$entry) { \n"
            . "return substr(\$entry, strlen(self::\$name) + 1 , strlen(\$entry));\n"
            . "}\n";
    }

}


?>

1
मुझे यह पसंद है, बहुत कुछ। हालांकि, प्राथमिक शिकायतों में से एक आईडीई की क्षमता ऑटो-पूर्ण के लिए मूल्यों को लेने की है। मुझे यकीन नहीं है कि यह आईडीई के लिए एक कस्टम एडोन के बिना ऐसा करने में सक्षम होगा। ऐसा नहीं है कि यह नहीं किया जा सकता है, यह सिर्फ कुछ काम ले जाएगा।
corsiKa

2
eval()सिर्फ इतना का उपयोग करके आप नए Enums रनटाइम की घोषणा कर सकते हैं? EEK। मैं इसे महसूस नहीं कर रहा हूं। उचित एनुअल को परिभाषित करने से पहले आप अन्य वर्गों को गलत एनम क्लास बनाने से कैसे रोकेंगे? क्या एनामस को रनटाइम से पहले नहीं जाना जाता है? और जैसा @corsiKa निहित है, कोई आईडीई स्वतः पूर्णता नहीं है। केवल मैं देख रहा लाभ आलसी कोडिंग है।
क्रेकडीड

7

मुझे जावा से भी दुश्मनी पसंद है और इसी वजह से मैं अपने एनम को इस तरह से लिखता हूं, मुझे लगता है कि यह जावा एनम की तरह सबसे अधिक व्यवहार करने वाला व्यवहार है, निश्चित रूप से, अगर कुछ जावा से अधिक तरीकों का उपयोग करना चाहते हैं, तो इसे यहां लिखना चाहिए, या अमूर्त वर्ग लेकिन कोर विचार नीचे कोड में एम्बेडेड है


class FruitsEnum {

    static $APPLE = null;
    static $ORANGE = null;

    private $value = null;

    public static $map;

    public function __construct($value) {
        $this->value = $value;
    }

    public static function init () {
        self::$APPLE  = new FruitsEnum("Apple");
        self::$ORANGE = new FruitsEnum("Orange");
        //static map to get object by name - example Enum::get("INIT") - returns Enum::$INIT object;
        self::$map = array (
            "Apple" => self::$APPLE,
            "Orange" => self::$ORANGE
        );
    }

    public static function get($element) {
        if($element == null)
            return null;
        return self::$map[$element];
    }

    public function getValue() {
        return $this->value;
    }

    public function equals(FruitsEnum $element) {
        return $element->getValue() == $this->getValue();
    }

    public function __toString () {
        return $this->value;
    }
}
FruitsEnum::init();

var_dump(FruitsEnum::$APPLE->equals(FruitsEnum::$APPLE)); //true
var_dump(FruitsEnum::$APPLE->equals(FruitsEnum::$ORANGE)); //false
var_dump(FruitsEnum::$APPLE instanceof FruitsEnum); //true
var_dump(FruitsEnum::get("Apple")->equals(FruitsEnum::$APPLE)); //true - enum from string
var_dump(FruitsEnum::get("Apple")->equals(FruitsEnum::get("Orange"))); //false

3
मैं बहुत कुछ एक ही काम कर रहा हूं, हालांकि दो छोटे परिवर्धन के साथ: मैंने स्थिर मूल्यों के पीछे स्थिर मूल्यों को छिपाया है। एक कारण यह है कि मैं नेत्रहीन पसंद करते हैं, है FruitsEnum::Apple()से अधिक FruitsEnum::$Appleहै, लेकिन अधिक महत्वपूर्ण कारण सेटिंग से किसी और को रोकने के लिए है $APPLE, इस प्रकार पूरे आवेदन के लिए enum को तोड़ दिया। दूसरा एक साधारण निजी स्थिर झंडा है $initializedजो यह सुनिश्चित करता है कि init()पहली बार कॉल करने के बाद कॉलिंग नो-ऑप हो जाए (ताकि कोई भी उस के साथ गड़बड़ न कर सके)।
मार्टिन एंडर

मुझे मार्टिन पसंद था। .init()अजीब है, और मुझे गेटटर दृष्टिकोण से कोई आपत्ति नहीं है।
सेबास

7
abstract class Enumeration
{
    public static function enum() 
    {
        $reflect = new ReflectionClass( get_called_class() );
        return $reflect->getConstants();
    }
}


class Test extends Enumeration
{
    const A = 'a';
    const B = 'b';    
}


foreach (Test::enum() as $key => $value) {
    echo "$key -> $value<br>";
}

6

यह उतना ही सरल हो सकता है

enum DaysOfWeek {
    Sunday,
    Monday,
    // ...
}

भविष्य में।

PHP RFC: Enumerated Types


7.1 के रूप में FYI करें अभी भी यहाँ नहीं है
toddmo

5

सबसे आम समाधान जो मैंने पीएचपी में एनम के लिए देखा है वह एक सामान्य एनम वर्ग बनाने और फिर इसे विस्तारित करने के लिए किया गया है। आप इस पर एक नज़र डाल सकते हैं ।

अद्यतन: वैकल्पिक रूप से, मुझे यह phpclasses.org से मिला।


1
हालांकि कार्यान्वयन धीमा है और शायद यह काम करेगा, इसका नकारात्मक पक्ष यह है कि आईडीई शायद यह नहीं जानता कि कैसे एनमों को ऑटोफिल करना है। मैं phpclasses.org से एक का निरीक्षण नहीं कर सका, क्योंकि यह मुझे पंजीकृत करना चाहता था।
हेनरिक पॉल

5

यहाँ php में टाइप-सुरक्षित एनुमरेशंस को संभालने के लिए एक जीथब लाइब्रेरी है:

यह लाइब्रेरी क्लासेस जनरेशन, क्लासेस कैशिंग संभालती है और यह टाइप सेफ एन्यूमरेशन डिज़ाइन पैटर्न को लागू करती है, एनमों से निपटने के लिए कई हेल्पर तरीकों के साथ, जैसे एनमेस सॉर्टिंग के लिए एक ऑर्डिनल प्राप्त करना, या एक बाइनरी वैल्यू को पुनः प्राप्त करना, एनमेस कॉम्बिनेशन के लिए।

उत्पन्न कोड एक सादे पुराने php टेम्पलेट फ़ाइल का उपयोग करता है, जो कि विन्यास योग्य भी है, जिससे आप अपना स्वयं का टेम्पलेट प्रदान कर सकते हैं।

यह फुलुनिट से ढका हुआ पूर्ण परीक्षण है।

gpub पर php-enums (कांटा मुक्त महसूस करें)

उपयोग (अधिक जानकारी के लिए (@see उपयोग.php, या इकाई परीक्षण)

<?php
//require the library
require_once __DIR__ . '/src/Enum.func.php';

//if you don't have a cache directory, create one
@mkdir(__DIR__ . '/cache');
EnumGenerator::setDefaultCachedClassesDir(__DIR__ . '/cache');

//Class definition is evaluated on the fly:
Enum('FruitsEnum', array('apple' , 'orange' , 'rasberry' , 'bannana'));

//Class definition is cached in the cache directory for later usage:
Enum('CachedFruitsEnum', array('apple' , 'orange' , 'rasberry' , 'bannana'), '\my\company\name\space', true);

echo 'FruitsEnum::APPLE() == FruitsEnum::APPLE(): ';
var_dump(FruitsEnum::APPLE() == FruitsEnum::APPLE()) . "\n";

echo 'FruitsEnum::APPLE() == FruitsEnum::ORANGE(): ';
var_dump(FruitsEnum::APPLE() == FruitsEnum::ORANGE()) . "\n";

echo 'FruitsEnum::APPLE() instanceof Enum: ';
var_dump(FruitsEnum::APPLE() instanceof Enum) . "\n";

echo 'FruitsEnum::APPLE() instanceof FruitsEnum: ';
var_dump(FruitsEnum::APPLE() instanceof FruitsEnum) . "\n";

echo "->getName()\n";
foreach (FruitsEnum::iterator() as $enum)
{
  echo "  " . $enum->getName() . "\n";
}

echo "->getValue()\n";
foreach (FruitsEnum::iterator() as $enum)
{
  echo "  " . $enum->getValue() . "\n";
}

echo "->getOrdinal()\n";
foreach (CachedFruitsEnum::iterator() as $enum)
{
  echo "  " . $enum->getOrdinal() . "\n";
}

echo "->getBinary()\n";
foreach (CachedFruitsEnum::iterator() as $enum)
{
  echo "  " . $enum->getBinary() . "\n";
}

आउटपुट:

FruitsEnum::APPLE() == FruitsEnum::APPLE(): bool(true)
FruitsEnum::APPLE() == FruitsEnum::ORANGE(): bool(false)
FruitsEnum::APPLE() instanceof Enum: bool(true)
FruitsEnum::APPLE() instanceof FruitsEnum: bool(true)
->getName()
  APPLE
  ORANGE
  RASBERRY
  BANNANA
->getValue()
  apple
  orange
  rasberry
  bannana
->getValue() when values have been specified
  pig
  dog
  cat
  bird
->getOrdinal()
  1
  2
  3
  4
->getBinary()
  1
  2
  4
  8

4

मैंने नीचे दिए गए दृष्टिकोण का उपयोग करने के लिए लिया है क्योंकि यह मुझे फ़ंक्शन मापदंडों के लिए सुरक्षा, नेटबीन्स में ऑटो पूर्ण और अच्छा प्रदर्शन करने की क्षमता देता है। एक बात जो मुझे बहुत पसंद नहीं है वह यह है कि आपको [extended class name]::enumerate();कक्षा को परिभाषित करने के बाद कॉल करना होगा।

abstract class Enum {

    private $_value;

    protected function __construct($value) {
        $this->_value = $value;
    }

    public function __toString() {
        return (string) $this->_value;
    }

    public static function enumerate() {
        $class = get_called_class();
        $ref = new ReflectionClass($class);
        $statics = $ref->getStaticProperties();
        foreach ($statics as $name => $value) {
            $ref->setStaticPropertyValue($name, new $class($value));
        }
    }
}

class DaysOfWeek extends Enum {
    public static $MONDAY = 0;
    public static $SUNDAY = 1;
    // etc.
}
DaysOfWeek::enumerate();

function isMonday(DaysOfWeek $d) {
    if ($d == DaysOfWeek::$MONDAY) {
        return true;
    } else {
        return false;
    }
}

$day = DaysOfWeek::$MONDAY;
echo (isMonday($day) ? "bummer it's monday" : "Yay! it's not monday");

कुछ भी आपको DaysOfWeek::$MONDAY = 3;
एनम

@BrianFisher, मुझे पता है कि यह एक नाइट देर हो चुकी है, लेकिन, अगर आपको [extended class name]::enumerate();परिभाषा के बाद फोन करना पसंद नहीं है, तो आप इसे निर्माण में क्यों नहीं करते हैं?
कैन ओ 'स्पैम

4

नीचे मेरी Enum वर्ग की परिभाषा मजबूत रूप से टाइप की गई है , और उपयोग करने और परिभाषित करने के लिए बहुत स्वाभाविक है।

परिभाषा:

class Fruit extends Enum {
    static public $APPLE = 1;
    static public $ORANGE = 2;
}
Fruit::initialize(); //Can also be called in autoloader

Enum पर स्विच करें

$myFruit = Fruit::$APPLE;

switch ($myFruit) {
    case Fruit::$APPLE  : echo "I like apples\n";  break;
    case Fruit::$ORANGE : echo "I hate oranges\n"; break;
}

>> I like apples

एनम को पैरामीटर के रूप में पास करें (मजबूत रूप से टाइप किया गया)

/** Function only accepts Fruit enums as input**/
function echoFruit(Fruit $fruit) {
    echo $fruit->getName().": ".$fruit->getValue()."\n";
}

/** Call function with each Enum value that Fruit has */
foreach (Fruit::getList() as $fruit) {
    echoFruit($fruit);
}

//Call function with Apple enum
echoFruit(Fruit::$APPLE)

//Will produce an error. This solution is strongly typed
echoFruit(2);

>> APPLE: 1
>> ORANGE: 2
>> APPLE: 1
>> Argument 1 passed to echoFruit() must be an instance of Fruit, integer given

इको एनम को स्ट्रिंग के रूप में

echo "I have an $myFruit\n";

>> I have an APPLE

पूर्णांक द्वारा Enum प्राप्त करें

$myFruit = Fruit::getByValue(2);

echo "Now I have an $myFruit\n";

>> Now I have an ORANGE

नाम से Enum प्राप्त करें

$myFruit = Fruit::getByName("APPLE");

echo "But I definitely prefer an $myFruit\n\n";

>> But I definitely prefer an APPLE

द एनम क्लास:

/**
 * @author Torge Kummerow
 */
class Enum {

    /**
     * Holds the values for each type of Enum
     */
    static private $list = array();

    /**
     * Initializes the enum values by replacing the number with an instance of itself
     * using reflection
     */
    static public function initialize() {
        $className = get_called_class();
        $class = new ReflectionClass($className);
        $staticProperties = $class->getStaticProperties();

        self::$list[$className] = array();

        foreach ($staticProperties as $propertyName => &$value) {
            if ($propertyName == 'list')
                continue;

            $enum = new $className($propertyName, $value);
            $class->setStaticPropertyValue($propertyName, $enum);
            self::$list[$className][$propertyName] = $enum;
        } unset($value);
    }


    /**
     * Gets the enum for the given value
     *
     * @param integer $value
     * @throws Exception
     *
     * @return Enum
     */
    static public function getByValue($value) {
        $className = get_called_class();
        foreach (self::$list[$className] as $propertyName=>&$enum) {
            /* @var $enum Enum */
            if ($enum->value == $value)
                return $enum;
        } unset($enum);

        throw new Exception("No such enum with value=$value of type ".get_called_class());
    }

    /**
     * Gets the enum for the given name
     *
     * @param string $name
     * @throws Exception
     *
     * @return Enum
     */
    static public function getByName($name) {
        $className = get_called_class();
        if (array_key_exists($name, static::$list[$className]))
            return self::$list[$className][$name];

        throw new Exception("No such enum ".get_called_class()."::\$$name");
    }


    /**
     * Returns the list of all enum variants
     * @return Array of Enum
     */
    static public function getList() {
        $className = get_called_class();
        return self::$list[$className];
    }


    private $name;
    private $value;

    public function __construct($name, $value) {
        $this->name = $name;
        $this->value = $value;
    }

    public function __toString() {
        return $this->name;
    }

    public function getValue() {
        return $this->value;
    }

    public function getName() {
        return $this->name;
    }

}

इसके अलावा

आप IDEs के लिए टिप्पणी भी जोड़ सकते हैं

class Fruit extends Enum {

    /**
     * This comment is for autocomplete support in common IDEs
     * @var Fruit A yummy apple
     */
    static public $APPLE = 1;

    /**
     * This comment is for autocomplete support in common IDEs
     * @var Fruit A sour orange
     */
    static public $ORANGE = 2;
}

//This can also go to the autoloader if available.
Fruit::initialize();

4

मुझे लगता है कि यह एक बहुत-बहुत पुराना धागा है लेकिन मैंने इस बारे में सोचा था और जानना चाहता था कि लोग क्या सोचते हैं।

नोट्स: मैं इस के साथ खेल रहा था और महसूस किया कि अगर मैंने केवल उस __call()फ़ंक्शन को संशोधित किया है जिसे आप वास्तविक के करीब भी प्राप्त कर सकते हैं enums__call()समारोह सभी अज्ञात फ़ंक्शन कॉल संभालती है। तो enumsमान लें कि आप तीन RED_LIGHT, YELLOW_LIGHT और GREEN_LIGHT बनाना चाहते हैं । आप अभी निम्न कार्य करके ऐसा कर सकते हैं:

$c->RED_LIGHT();
$c->YELLOW_LIGHT();
$c->GREEN_LIGHT();

एक बार परिभाषित करने के बाद आपको उन सभी मूल्यों को प्राप्त करने के लिए उन्हें फिर से कॉल करना होगा:

echo $c->RED_LIGHT();
echo $c->YELLOW_LIGHT();
echo $c->GREEN_LIGHT();

और आपको 0, 1, और 2. मिलना चाहिए! यह अब GitHub पर भी है।

अद्यतन: मैंने इसे बनाया है इसलिए अब दोनों फ़ंक्शन __get()और __set()फ़ंक्शन का उपयोग किया जाता है। जब तक आप नहीं चाहते हैं ये आपको फ़ंक्शन को कॉल करने की अनुमति नहीं देते हैं। इसके बजाय, अब आप बस कह सकते हैं:

$c->RED_LIGHT;
$c->YELLOW_LIGHT;
$c->GREEN_LIGHT;

मूल्यों के निर्माण और प्राप्ति दोनों के लिए। क्योंकि चर को शुरू में परिभाषित नहीं किया गया है, __get()फ़ंक्शन को कहा जाता है (क्योंकि इसमें कोई मान निर्दिष्ट नहीं है) जो देखता है कि सरणी में प्रविष्टि नहीं की गई है। तो यह प्रविष्टि बनाता है, इसे अंतिम मान दिया गया है प्लस (+1), अंतिम मान चर बढ़ाता है, और TRUE लौटाता है। यदि आप मान सेट करते हैं:

$c->RED_LIGHT = 85;

फिर __set()फ़ंक्शन को कॉल किया जाता है और अंतिम मान को फिर नए मान प्लस (+1) पर सेट किया जाता है। तो अब हमारे पास एनमोंस करने का एक अच्छा तरीका है और वे फ्लाई पर बनाए जा सकते हैं।

<?php
################################################################################
#   Class ENUMS
#
#       Original code by Mark Manning.
#       Copyrighted (c) 2015 by Mark Manning.
#       All rights reserved.
#
#       This set of code is hereby placed into the free software universe
#       via the GNU greater license thus placing it under the Copyleft
#       rules and regulations with the following modifications:
#
#       1. You may use this work in any other work.  Commercial or otherwise.
#       2. You may make as much money as you can with it.
#       3. You owe me nothing except to give me a small blurb somewhere in
#           your program or maybe have pity on me and donate a dollar to
#           sim_sales@paypal.com.  :-)
#
#   Blurb:
#
#       PHP Class Enums by Mark Manning (markem-AT-sim1-DOT-us).
#       Used with permission.
#
#   Notes:
#
#       VIM formatting.  Set tabs to four(4) spaces.
#
################################################################################
class enums
{
    private $enums;
    private $clear_flag;
    private $last_value;

################################################################################
#   __construct(). Construction function.  Optionally pass in your enums.
################################################################################
function __construct()
{
    $this->enums = array();
    $this->clear_flag = false;
    $this->last_value = 0;

    if( func_num_args() > 0 ){
        return $this->put( func_get_args() );
        }

    return true;
}
################################################################################
#   put(). Insert one or more enums.
################################################################################
function put()
{
    $args = func_get_args();
#
#   Did they send us an array of enums?
#   Ex: $c->put( array( "a"=>0, "b"=>1,...) );
#   OR  $c->put( array( "a", "b", "c",... ) );
#
    if( is_array($args[0]) ){
#
#   Add them all in
#
        foreach( $args[0] as $k=>$v ){
#
#   Don't let them change it once it is set.
#   Remove the IF statement if you want to be able to modify the enums.
#
            if( !isset($this->enums[$k]) ){
#
#   If they sent an array of enums like this: "a","b","c",... then we have to
#   change that to be "A"=>#. Where "#" is the current count of the enums.
#
                if( is_numeric($k) ){
                    $this->enums[$v] = $this->last_value++;
                    }
#
#   Else - they sent "a"=>"A", "b"=>"B", "c"=>"C"...
#
                    else {
                        $this->last_value = $v + 1;
                        $this->enums[$k] = $v;
                        }
                }
            }
        }
#
#   Nope!  Did they just sent us one enum?
#
        else {
#
#   Is this just a default declaration?
#   Ex: $c->put( "a" );
#
            if( count($args) < 2 ){
#
#   Again - remove the IF statement if you want to be able to change the enums.
#
                if( !isset($this->enums[$args[0]]) ){
                    $this->enums[$args[0]] = $this->last_value++;
                    }
#
#   No - they sent us a regular enum
#   Ex: $c->put( "a", "This is the first enum" );
#
                    else {
#
#   Again - remove the IF statement if you want to be able to change the enums.
#
                        if( !isset($this->enums[$args[0]]) ){
                            $this->last_value = $args[1] + 1;
                            $this->enums[$args[0]] = $args[1];
                            }
                        }
                }
            }

    return true;
}
################################################################################
#   get(). Get one or more enums.
################################################################################
function get()
{
    $num = func_num_args();
    $args = func_get_args();
#
#   Is this an array of enums request? (ie: $c->get(array("a","b","c"...)) )
#
    if( is_array($args[0]) ){
        $ary = array();
        foreach( $args[0] as $k=>$v ){
            $ary[$v] = $this->enums[$v];
            }

        return $ary;
        }
#
#   Is it just ONE enum they want? (ie: $c->get("a") )
#
        else if( ($num > 0) && ($num < 2) ){
            return $this->enums[$args[0]];
            }
#
#   Is it a list of enums they want? (ie: $c->get( "a", "b", "c"...) )
#
        else if( $num > 1 ){
            $ary = array();
            foreach( $args as $k=>$v ){
                $ary[$v] = $this->enums[$v];
                }

            return $ary;
            }
#
#   They either sent something funky or nothing at all.
#
    return false;
}
################################################################################
#   clear(). Clear out the enum array.
#       Optional.  Set the flag in the __construct function.
#       After all, ENUMS are supposed to be constant.
################################################################################
function clear()
{
    if( $clear_flag ){
        unset( $this->enums );
        $this->enums = array();
        }

    return true;
}
################################################################################
#   __call().  In case someone tries to blow up the class.
################################################################################
function __call( $name, $arguments )
{
    if( isset($this->enums[$name]) ){ return $this->enums[$name]; }
        else if( !isset($this->enums[$name]) && (count($arguments) > 0) ){
            $this->last_value = $arguments[0] + 1;
            $this->enums[$name] = $arguments[0];
            return true;
            }
        else if( !isset($this->enums[$name]) && (count($arguments) < 1) ){
            $this->enums[$name] = $this->last_value++;
            return true;
            }

    return false;
}
################################################################################
#   __get(). Gets the value.
################################################################################
function __get($name)
{
    if( isset($this->enums[$name]) ){ return $this->enums[$name]; }
        else if( !isset($this->enums[$name]) ){
            $this->enums[$name] = $this->last_value++;
            return true;
            }

    return false;
}
################################################################################
#   __set().  Sets the value.
################################################################################
function __set( $name, $value=null )
{
    if( isset($this->enums[$name]) ){ return false; }
        else if( !isset($this->enums[$name]) && !is_null($value) ){
            $this->last_value = $value + 1;
            $this->enums[$name] = $value;
            return true;
            }
        else if( !isset($this->enums[$name]) && is_null($value) ){
            $this->enums[$name] = $this->last_value++;
            return true;
            }

    return false;
}
################################################################################
#   __destruct().  Deconstruct the class.  Remove the list of enums.
################################################################################
function __destruct()
{
    unset( $this->enums );
    $this->enums = null;

    return true;
}

}
#
#   Test code
#
#   $c = new enums();
#   $c->RED_LIGHT(85);
#   $c->YELLOW_LIGHT = 23;
#   $c->GREEN_LIGHT;
#
#   echo $c->RED_LIGHT . "\n";
#   echo $c->YELLOW_LIGHT . "\n";
#   echo $c->GREEN_LIGHT . "\n";

?>

3

मुझे पता है कि यह एक पुराना धागा है, हालाँकि मैंने जितने भी वर्कअर्म्स देखे हैं वे वास्तव में एनम की तरह दिखते हैं, क्योंकि लगभग सभी वर्कअराउंड के लिए आपको एनम आइटम को मैन्युअल रूप से असाइन करने की आवश्यकता होती है, या इसके लिए आपको एनम की एक सरणी पास करनी होगी। समारोह। इसलिए मैंने इसके लिए अपना समाधान बनाया।

मेरे समाधान का उपयोग करके एक एनम क्लास बनाने के लिए, बस नीचे इस एनम क्लास का विस्तार कर सकते हैं, स्टैटिक वैरिएबल्स का एक गुच्छा बनाएं (उन्हें इनिशियलाइज़ करने की कोई ज़रूरत नहीं है), और अपने ईनम क्लास की परिभाषा के नीचे अपने इनेमलक्लास :: init () को कॉल करें। ।

संपादित करें: यह केवल php> = 5.3 में काम करता है, लेकिन इसे संभवतः पुराने संस्करणों में भी काम करने के लिए संशोधित किया जा सकता है

/**
 * A base class for enums. 
 * 
 * This class can be used as a base class for enums. 
 * It can be used to create regular enums (incremental indices), but it can also be used to create binary flag values.
 * To create an enum class you can simply extend this class, and make a call to <yourEnumClass>::init() before you use the enum.
 * Preferably this call is made directly after the class declaration. 
 * Example usages:
 * DaysOfTheWeek.class.php
 * abstract class DaysOfTheWeek extends Enum{
 *      static $MONDAY = 1;
 *      static $TUESDAY;
 *      static $WEDNESDAY;
 *      static $THURSDAY;
 *      static $FRIDAY;
 *      static $SATURDAY;
 *      static $SUNDAY;
 * }
 * DaysOfTheWeek::init();
 * 
 * example.php
 * require_once("DaysOfTheWeek.class.php");
 * $today = date('N');
 * if ($today == DaysOfTheWeek::$SUNDAY || $today == DaysOfTheWeek::$SATURDAY)
 *      echo "It's weekend!";
 * 
 * Flags.class.php
 * abstract class Flags extends Enum{
 *      static $FLAG_1;
 *      static $FLAG_2;
 *      static $FLAG_3;
 * }
 * Flags::init(Enum::$BINARY_FLAG);
 * 
 * example2.php
 * require_once("Flags.class.php");
 * $flags = Flags::$FLAG_1 | Flags::$FLAG_2;
 * if ($flags & Flags::$FLAG_1)
 *      echo "Flag_1 is set";
 * 
 * @author Tiddo Langerak
 */
abstract class Enum{

    static $BINARY_FLAG = 1;
    /**
     * This function must be called to initialize the enumeration!
     * 
     * @param bool $flags If the USE_BINARY flag is provided, the enum values will be binary flag values. Default: no flags set.
     */ 
    public static function init($flags = 0){
        //First, we want to get a list of all static properties of the enum class. We'll use the ReflectionClass for this.
        $enum = get_called_class();
        $ref = new ReflectionClass($enum);
        $items = $ref->getStaticProperties();
        //Now we can start assigning values to the items. 
        if ($flags & self::$BINARY_FLAG){
            //If we want binary flag values, our first value should be 1.
            $value = 1;
            //Now we can set the values for all items.
            foreach ($items as $key=>$item){
                if (!isset($item)){                 
                    //If no value is set manually, we should set it.
                    $enum::$$key = $value;
                    //And we need to calculate the new value
                    $value *= 2;
                } else {
                    //If there was already a value set, we will continue starting from that value, but only if that was a valid binary flag value.
                    //Otherwise, we will just skip this item.
                    if ($key != 0 && ($key & ($key - 1) == 0))
                        $value = 2 * $item;
                }
            }
        } else {
            //If we want to use regular indices, we'll start with index 0.
            $value = 0;
            //Now we can set the values for all items.
            foreach ($items as $key=>$item){
                if (!isset($item)){
                    //If no value is set manually, we should set it, and increment the value for the next item.
                    $enum::$$key = $value;
                    $value++;
                } else {
                    //If a value was already set, we'll continue from that value.
                    $value = $item+1;
                }
            }
        }
    }
}

3

अब आप इसे बनाने के लिए स्प्लीनम वर्ग का उपयोग कर सकते हैं । आधिकारिक दस्तावेज के अनुसार।

SplEnum PHP में मूल रूप से गणना करने वाली वस्तुओं का अनुकरण और निर्माण करने की क्षमता देता है।

<?php
class Month extends SplEnum {
    const __default = self::January;

    const January = 1;
    const February = 2;
    const March = 3;
    const April = 4;
    const May = 5;
    const June = 6;
    const July = 7;
    const August = 8;
    const September = 9;
    const October = 10;
    const November = 11;
    const December = 12;
}

echo new Month(Month::June) . PHP_EOL;

try {
    new Month(13);
} catch (UnexpectedValueException $uve) {
    echo $uve->getMessage() . PHP_EOL;
}
?>

कृपया ध्यान दें, यह एक एक्सटेंशन है जिसे इंस्टॉल करना है, लेकिन डिफ़ॉल्ट रूप से उपलब्ध नहीं है। जो php वेबसाइट में वर्णित विशेष प्रकार के अंतर्गत आता है। उपरोक्त उदाहरण PHP साइट से लिया गया है।


3

अंत में, एक PHP 7.1+ स्थिरांक के साथ उत्तर जिसे ओवरराइड नहीं किया जा सकता है।

/**
 * An interface that groups HTTP Accept: header Media Types in one place.
 */
interface MediaTypes
{
    /**
    * Now, if you have to use these same constants with another class, you can
    * without creating funky inheritance / is-a relationships.
    * Also, this gets around the single inheritance limitation.
    */

    public const HTML = 'text/html';
    public const JSON = 'application/json';
    public const XML = 'application/xml';
    public const TEXT = 'text/plain';
}

/**
 * An generic request class.
 */
abstract class Request
{
    // Why not put the constants here?
    // 1) The logical reuse issue.
    // 2) Single Inheritance. 
    // 3) Overriding is possible.

    // Why put class constants here?
    // 1) The constant value will not be necessary in other class families.
}

/**
 * An incoming / server-side HTTP request class.
 */
class HttpRequest extends Request implements MediaTypes
{
    // This class can implement groups of constants as necessary.
}

यदि आप नाम स्थान का उपयोग कर रहे हैं, तो कोड पूरा होने पर काम करना चाहिए।

हालाँकि, ऐसा करने में, आप वर्ग परिवार ( protectedया अकेले कक्षा) के भीतर स्थिरांक को छिपाने की क्षमता को ढीला कर देते हैं private। परिभाषा के अनुसार, एक में सब कुछ Interfaceहै public

PHP मैनुअल: इंटरफेस


यह जावा नहीं है। यह उन मामलों में काम करता है जहां मूल वर्ग में स्थिरांक को ओवरराइड करने के लिए बहुरूपता / रणनीति पैटर्न की आवश्यकता नहीं होती है।
एंथनी रटलेज

2

यह मेरी "डायनामिक" एनम पर है ... ताकि मैं इसे चर, पूर्व के साथ कह सकूं। एक रूप से।

इस कोडब्लॉक के नीचे अपडेटेड वर्जन देखें ...

$value = "concert";
$Enumvalue = EnumCategory::enum($value);
//$EnumValue = 1

class EnumCategory{
    const concert = 1;
    const festival = 2;
    const sport = 3;
    const nightlife = 4;
    const theatre = 5;
    const musical = 6;
    const cinema = 7;
    const charity = 8;
    const museum = 9;
    const other = 10;

    public function enum($string){
        return constant('EnumCategory::'.$string);
    }
}

अद्यतन: इसे करने का बेहतर तरीका ...

class EnumCategory {

    static $concert = 1;
    static $festival = 2;
    static $sport = 3;
    static $nightlife = 4;
    static $theatre = 5;
    static $musical = 6;
    static $cinema = 7;
    static $charity = 8;
    static $museum = 9;
    static $other = 10;

}

के साथ बुलाना

EnumCategory::${$category};

5
इस होने के साथ समस्या; EnumCategory::$sport = 9;। खेल संग्रहालय में आपका स्वागत है। const यह करने का बेहतर तरीका है।
डेन लैग

2

स्वीकृत उत्तर जाने का रास्ता है और वास्तव में मैं सादगी के लिए क्या कर रहा हूं। एन्यूमरेशन के ज्यादातर फायदे (पठनीय, तेज आदि) पेश किए जाते हैं। एक अवधारणा गायब है, हालांकि: प्रकार की सुरक्षा। अधिकांश भाषाओं में, अनुमत मूल्यों को प्रतिबंधित करने के लिए गणना का उपयोग किया जाता है। नीचे एक उदाहरण दिया गया है कि निजी कंस्ट्रक्टर, स्टेटिक इंस्टेंटेशन विधियों और टाइप चेकिंग का उपयोग करके किस प्रकार की सुरक्षा प्राप्त की जा सकती है:

class DaysOfWeek{
 const Sunday = 0;
 const Monday = 1;
 // etc.

 private $intVal;
 private function __construct($intVal){
   $this->intVal = $intVal;
 }

 //static instantiation methods
 public static function MONDAY(){
   return new self(self::Monday);
 }
 //etc.
}

//function using type checking
function printDayOfWeek(DaysOfWeek $d){ //compiler can now use type checking
  // to something with $d...
}

//calling the function is safe!
printDayOfWeek(DaysOfWeek::MONDAY());

हम और भी आगे बढ़ सकते हैं: DaysOfWeek वर्ग में स्थिरांक का उपयोग करने से मिसयूज हो सकता है: जैसे कोई गलती से इसका उपयोग कर सकता है:

printDayOfWeek(DaysOfWeek::Monday); //triggers a compiler error.

जो गलत है (पूर्णांक स्थिरांक कहता है)। हम स्थिरांक के बजाय निजी स्थिर चर का उपयोग करके इसे रोक सकते हैं:

class DaysOfWeeks{

  private static $monday = 1;
  //etc.

  private $intVal;
  //private constructor
  private function __construct($intVal){
    $this->intVal = $intVal;
  }

  //public instantiation methods
  public static function MONDAY(){
    return new self(self::$monday);
  }
  //etc.


  //convert an instance to its integer value
  public function intVal(){
    return $this->intVal;
  }

}

बेशक, पूर्णांक स्थिरांक तक पहुंचना संभव नहीं है (यह वास्तव में उद्देश्य था)। IntVal विधि एक DaysOfWeek ऑब्जेक्ट को उसके पूर्णांक प्रतिनिधित्व में बदलने की अनुमति देती है।

ध्यान दें कि हम मामले में स्मृति को बचाने के लिए तात्कालिक तरीकों में एक कैशिंग तंत्र को लागू करके और भी आगे बढ़ सकते हैं।

आशा है कि यह मदद करेगा


2

यहाँ पर कुछ अच्छे समाधान!

यहाँ मेरा संस्करण है।

  • यह दृढ़ता से टाइप किया गया है
  • यह IDE ऑटो-पूर्णता के साथ काम करता है
  • एनम को एक कोड और एक विवरण द्वारा परिभाषित किया गया है, जहां कोड एक पूर्णांक, एक बाइनरी मान, एक छोटी स्ट्रिंग, या मूल रूप से कुछ और जो आप चाहते हैं। पैटर्न आसानी से orther संपत्तियों का समर्थन करने के लिए बढ़ाया जा सकता है।
  • यह मानों (==) और संदर्भ (===) की तुलना करता है और स्विच स्टेटमेंट में काम करता है।

मुझे लगता है कि मुख्य नुकसान यह है कि एनम सदस्यों को अलग-अलग घोषित और त्वरित रूप से घोषित किया जाना है, क्योंकि स्थैतिक सदस्य घोषणा समय पर वस्तुओं का निर्माण करने के लिए विवरण और PHP की अक्षमता के कारण। मुझे लगता है कि इसके बजाय पार्स डॉक टिप्पणियों के साथ प्रतिबिंब का उपयोग करने का एक तरीका हो सकता है।

अमूर्त Enum इस तरह दिखता है:

<?php

abstract class AbstractEnum
{
    /** @var array cache of all enum instances by class name and integer value */
    private static $allEnumMembers = array();

    /** @var mixed */
    private $code;

    /** @var string */
    private $description;

    /**
     * Return an enum instance of the concrete type on which this static method is called, assuming an instance
     * exists for the passed in value.  Otherwise an exception is thrown.
     *
     * @param $code
     * @return AbstractEnum
     * @throws Exception
     */
    public static function getByCode($code)
    {
        $concreteMembers = &self::getConcreteMembers();

        if (array_key_exists($code, $concreteMembers)) {
            return $concreteMembers[$code];
        }

        throw new Exception("Value '$code' does not exist for enum '".get_called_class()."'");
    }

    public static function getAllMembers()
    {
        return self::getConcreteMembers();
    }

    /**
     * Create, cache and return an instance of the concrete enum type for the supplied primitive value.
     *
     * @param mixed $code code to uniquely identify this enum
     * @param string $description
     * @throws Exception
     * @return AbstractEnum
     */
    protected static function enum($code, $description)
    {
        $concreteMembers = &self::getConcreteMembers();

        if (array_key_exists($code, $concreteMembers)) {
            throw new Exception("Value '$code' has already been added to enum '".get_called_class()."'");
        }

        $concreteMembers[$code] = $concreteEnumInstance = new static($code, $description);

        return $concreteEnumInstance;
    }

    /**
     * @return AbstractEnum[]
     */
    private static function &getConcreteMembers() {
        $thisClassName = get_called_class();

        if (!array_key_exists($thisClassName, self::$allEnumMembers)) {
            $concreteMembers = array();
            self::$allEnumMembers[$thisClassName] = $concreteMembers;
        }

        return self::$allEnumMembers[$thisClassName];
    }

    private function __construct($code, $description)
    {
        $this->code = $code;
        $this->description = $description;
    }

    public function getCode()
    {
        return $this->code;
    }

    public function getDescription()
    {
        return $this->description;
    }
}

यहाँ एक उदाहरण ठोस enum है:

<?php

require('AbstractEnum.php');

class EMyEnum extends AbstractEnum
{
    /** @var EMyEnum */
    public static $MY_FIRST_VALUE;
    /** @var EMyEnum */
    public static $MY_SECOND_VALUE;
    /** @var EMyEnum */
    public static $MY_THIRD_VALUE;

    public static function _init()
    {
        self::$MY_FIRST_VALUE = self::enum(1, 'My first value');
        self::$MY_SECOND_VALUE = self::enum(2, 'My second value');
        self::$MY_THIRD_VALUE = self::enum(3, 'My third value');
    }
}

EMyEnum::_init();

जिसका उपयोग इस तरह किया जा सकता है:

<?php

require('EMyEnum.php');

echo EMyEnum::$MY_FIRST_VALUE->getCode().' : '.EMyEnum::$MY_FIRST_VALUE->getDescription().PHP_EOL.PHP_EOL;

var_dump(EMyEnum::getAllMembers());

echo PHP_EOL.EMyEnum::getByCode(2)->getDescription().PHP_EOL;

और इस उत्पादन का उत्पादन:

1: मेरा पहला मूल्य

सरणी (3) {
[1] =>
ऑब्जेक्ट (EMyEnum) # 1 (2) {
["कोड": "AbstractEnum": निजी] =>
int (1)
["विवरण": "AbstractEnum": ">
स्ट्रिंग (14) "मेरा पहला मूल्य"
}
[2] =>
वस्तु (EMEEnum) # 2 (2) {
["कोड": "AbstractEnum": निजी] =>
int (2)
["विवरण": "Abstractnnum" : निजी] =>
स्ट्रिंग (15) "मेरा दूसरा मूल्य"
}
[3] =>
वस्तु (EMEEnum) # 3 (2) {
["कोड": "AbstractEnum": निजी] =>
int (3)
["विवरण": "AbstractEnum": निजी] =>
स्ट्रिंग (14) "मेरा तीसरा मूल्य"
}
}

मेरा दूसरा मूल्य


2
class DayOfWeek {
    static $values = array(
        self::MONDAY,
        self::TUESDAY,
        // ...
    );

    const MONDAY  = 0;
    const TUESDAY = 1;
    // ...
}

$today = DayOfWeek::MONDAY;

// If you want to check if a value is valid
assert( in_array( $today, DayOfWeek::$values ) );

प्रतिबिंब का उपयोग न करें। आपके कोड के बारे में तर्क करना और जहां कुछ उपयोग किया जा रहा है, उसे ट्रैक करना बेहद मुश्किल हो जाता है, और स्थैतिक विश्लेषण टूल (जैसे कि आपके आईडीई में बनाया गया है) को तोड़ने के लिए जाता है।


2

अन्य उत्तरों में से कुछ से गायब पहलुओं में से एक यहाँ टाइप हिंटिंग के साथ एनम का उपयोग करने का एक तरीका है।

यदि आप अपनी एनम को एक अमूर्त वर्ग में स्थिरांक के एक सेट के रूप में परिभाषित करते हैं, जैसे

abstract class ShirtSize {
    public const SMALL = 1;
    public const MEDIUM = 2;
    public const LARGE = 3;
}

तो आप एक समारोह पैरामीटर में यह संकेत टाइप नहीं कर सकते हैं - एक के लिए है, क्योंकि यह instantiable नहीं है, बल्कि इसलिए भी कि के प्रकार ShirtSize::SMALLहै int, नहीं ShirtSize

यही कारण है कि PHP में देशी दुश्मनी इतनी बेहतर होगी कि हम कुछ भी कर सकते हैं। हालांकि, हम एक निजी संपत्ति रखकर एक एनम का अनुमान लगा सकते हैं, जो एनम के मूल्य का प्रतिनिधित्व करती है, और फिर इस संपत्ति के प्रारंभिककरण को हमारे पूर्वनिर्धारित स्थिरांक तक सीमित कर देती है। एनम को तत्काल मनमाने ढंग से रोकने के लिए (टाइप-एक श्वेतसूची की जांच के बिना), हम कंस्ट्रक्टर को निजी बनाते हैं।

class ShirtSize {
    private $size;
    private function __construct ($size) {
        $this->size = $size;
    }
    public function equals (ShirtSize $s) {
        return $this->size === $s->size;
    }
    public static function SMALL () { return new self(1); }
    public static function MEDIUM () { return new self(2); }
    public static function LARGE () { return new self(3); }
}

तो हम ShirtSizeइस तरह का उपयोग कर सकते हैं :

function sizeIsAvailable ($productId, ShirtSize $size) {
    // business magic
}
if(sizeIsAvailable($_GET["id"], ShirtSize::LARGE())) {
    echo "Available";
} else {
    echo "Out of stock.";
}
$s2 = ShirtSize::SMALL();
$s3 = ShirtSize::MEDIUM();
echo $s2->equals($s3) ? "SMALL == MEDIUM" : "SMALL != MEDIUM";

इस तरह, उपयोगकर्ता के दृष्टिकोण से सबसे बड़ा अंतर यह है कि आपको ()निरंतर नाम पर निपटना होगा ।

हालांकि एक नकारात्मक पहलू यह है कि ===(जो वस्तु समानता की तुलना करता है) झूठे ==रिटर्न के सही होने पर वापस आ जाएगा । कारण है कि, यह एक प्रदान करने के लिए सबसे अच्छा है equalsविधि, उपयोगकर्ताओं का उपयोग करने को याद करने की जरूरत नहीं है, इसलिए है कि ==और नहीं ===दो enum मूल्यों की तुलना करने के लिए।

संपादित करें: मौजूदा उत्तरों के एक जोड़े बहुत समान हैं, विशेष रूप से: https://stackoverflow.com/a/25526473/2407870


2

@ ब्रायन क्लाइन के उत्तर पर कदम रखते हुए मैंने सोचा कि मैं अपने 5 सेंट दे सकता हूं

<?php 
/**
 * A class that simulates Enums behaviour
 * <code>
 * class Season extends Enum{
 *    const Spring  = 0;
 *    const Summer = 1;
 *    const Autumn = 2;
 *    const Winter = 3;
 * }
 * 
 * $currentSeason = new Season(Season::Spring);
 * $nextYearSeason = new Season(Season::Spring);
 * $winter = new Season(Season::Winter);
 * $whatever = new Season(-1);               // Throws InvalidArgumentException
 * echo $currentSeason.is(Season::Spring);   // True
 * echo $currentSeason.getName();            // 'Spring'
 * echo $currentSeason.is($nextYearSeason);  // True
 * echo $currentSeason.is(Season::Winter);   // False
 * echo $currentSeason.is(Season::Spring);   // True
 * echo $currentSeason.is($winter);          // False
 * </code>
 * 
 * Class Enum
 * 
 * PHP Version 5.5
 */
abstract class Enum
{
    /**
     * Will contain all the constants of every enum that gets created to 
     * avoid expensive ReflectionClass usage
     * @var array
     */
    private static $_constCacheArray = [];
    /**
     * The value that separates this instance from the rest of the same class
     * @var mixed
     */
    private $_value;
    /**
     * The label of the Enum instance. Will take the string name of the 
     * constant provided, used for logging and human readable messages
     * @var string
     */
    private $_name;
    /**
     * Creates an enum instance, while makes sure that the value given to the 
     * enum is a valid one
     * 
     * @param mixed $value The value of the current
     * 
     * @throws \InvalidArgumentException
     */
    public final function __construct($value)
    {
        $constants = self::_getConstants();
        if (count($constants) !== count(array_unique($constants))) {
            throw new \InvalidArgumentException('Enums cannot contain duplicate constant values');
        }
        if ($name = array_search($value, $constants)) {
            $this->_value = $value;
            $this->_name = $name;
        } else {
            throw new \InvalidArgumentException('Invalid enum value provided');
        }
    }
    /**
     * Returns the constant name of the current enum instance
     * 
     * @return string
     */
    public function getName()
    {
        return $this->_name;
    }
    /**
     * Returns the value of the current enum instance
     * 
     * @return mixed
     */
    public function getValue()
    {
        return $this->_value;
    }
    /**
     * Checks whether this enum instance matches with the provided one.
     * This function should be used to compare Enums at all times instead
     * of an identity comparison 
     * <code>
     * // Assuming EnumObject and EnumObject2 both extend the Enum class
     * // and constants with such values are defined
     * $var  = new EnumObject('test'); 
     * $var2 = new EnumObject('test');
     * $var3 = new EnumObject2('test');
     * $var4 = new EnumObject2('test2');
     * echo $var->is($var2);  // true
     * echo $var->is('test'); // true
     * echo $var->is($var3);  // false
     * echo $var3->is($var4); // false
     * </code>
     * 
     * @param mixed|Enum $enum The value we are comparing this enum object against
     *                         If the value is instance of the Enum class makes
     *                         sure they are instances of the same class as well, 
     *                         otherwise just ensures they have the same value
     * 
     * @return bool
     */
    public final function is($enum)
    {
        // If we are comparing enums, just make
        // sure they have the same toString value
        if (is_subclass_of($enum, __CLASS__)) {
            return get_class($this) === get_class($enum) 
                    && $this->getValue() === $enum->getValue();
        } else {
            // Otherwise assume $enum is the value we are comparing against
            // and do an exact comparison
            return $this->getValue() === $enum;   
        }
    }

    /**
     * Returns the constants that are set for the current Enum instance
     * 
     * @return array
     */
    private static function _getConstants()
    {
        if (self::$_constCacheArray == null) {
            self::$_constCacheArray = [];
        }
        $calledClass = get_called_class();
        if (!array_key_exists($calledClass, self::$_constCacheArray)) {
            $reflect = new \ReflectionClass($calledClass);
            self::$_constCacheArray[$calledClass] = $reflect->getConstants();
        }
        return self::$_constCacheArray[$calledClass];
    }
}

किसी कारण से मैं इस funtions कॉल नहीं कर सकते। इसका मुझे यह बताना कि इस तरह के कार्य घोषित नहीं हैं। मैं क्या गलत कर रहा हूँ? [मूल Enum वर्ग एक और फ़ाइल में स्थित है और मैं उपयोग कर रहा हूँ include('enums.php');]। किसी कारण से यह बाल वर्गों के लिए एनम में घोषित कार्यों को नहीं देखता है ...
एंड्रयू

इसके अलावा ... स्ट्रिंग से इसे कैसे सेट करें? sth जैसे$currentSeason.set("Spring");
एंड्रयू

1

PHP के साथ एक एनम बनाने का मेरा प्रयास ... यह बेहद सीमित है क्योंकि यह एनम वैल्यू के रूप में वस्तुओं का समर्थन नहीं करता है, लेकिन फिर भी कुछ हद तक उपयोगी है ...

class ProtocolsEnum {

    const HTTP = '1';
    const HTTPS = '2';
    const FTP = '3';

    /**
     * Retrieve an enum value
     * @param string $name
     * @return string
     */
    public static function getValueByName($name) {
        return constant('self::'. $name);
    } 

    /**
     * Retrieve an enum key name
     * @param string $code
     * @return string
     */
    public static function getNameByValue($code) {
        foreach(get_class_constants() as $key => $val) {
            if($val == $code) {
                return $key;
            }
        }
    }

    /**
     * Retrieve associate array of all constants (used for creating droplist options)
     * @return multitype:
     */
    public static function toArray() {      
        return array_flip(self::get_class_constants());
    }

    private static function get_class_constants()
    {
        $reflect = new ReflectionClass(__CLASS__);
        return $reflect->getConstants();
    }
}

यह कई दिशाओं में सीमित है और मौजूदा उत्तर इस पर कहीं अधिक प्रदान करते हैं। मैं कहूंगा कि यह वास्तव में कुछ भी उपयोगी नहीं जोड़ रहा है।
हकर्रे

1

कल मैंने यह क्लास अपने ब्लॉग पर लिखी थी । मुझे लगता है कि यह शायद php स्क्रिप्ट में उपयोग के लिए आसान है:

final class EnumException extends Exception{}

abstract class Enum
{
    /**
     * @var array ReflectionClass
     */
    protected static $reflectorInstances = array();
    /**
     * Массив конфигурированного объекта-константы enum
     * @var array
     */
    protected static $enumInstances = array();
    /**
     * Массив соответствий значение->ключ используется для проверки - 
     * если ли константа с таким значением
     * @var array
     */
    protected static $foundNameValueLink = array();

    protected $constName;
    protected $constValue;

    /**
     * Реализует паттерн "Одиночка"
     * Возвращает объект константы, но но как объект его использовать не стоит, 
     * т.к. для него реализован "волшебный метод" __toString()
     * Это должно использоваться только для типизачии его как параметра
     * @paradm Node
     */
    final public static function get($value)
    {
        // Это остается здесь для увеличения производительности (по замерам ~10%)
        $name = self::getName($value);
        if ($name === false)
            throw new EnumException("Неизвестая константа");
        $className = get_called_class();    
        if (!isset(self::$enumInstances[$className][$name]))
        {
            $value = constant($className.'::'.$name);
            self::$enumInstances[$className][$name] = new $className($name, $value);
        }

        return self::$enumInstances[$className][$name];
    }

    /**
     * Возвращает массив констант пар ключ-значение всего перечисления
     * @return array 
     */
    final public static function toArray()
    {
        $classConstantsArray = self::getReflectorInstance()->getConstants();
        foreach ($classConstantsArray as $k => $v)
            $classConstantsArray[$k] = (string)$v;
        return $classConstantsArray;
    }

    /**
     * Для последующего использования в toArray для получения массива констант ключ->значение 
     * @return ReflectionClass
     */
    final private static function getReflectorInstance()
    {
        $className = get_called_class();
        if (!isset(self::$reflectorInstances[$className]))
        {
            self::$reflectorInstances[$className] = new ReflectionClass($className);
        }
        return self::$reflectorInstances[$className];
    }

    /**
     * Получает имя константы по её значению
     * @param string $value
     */
    final public static function getName($value)
    {
        $className = (string)get_called_class();

        $value = (string)$value;
        if (!isset(self::$foundNameValueLink[$className][$value]))
        {
            $constantName = array_search($value, self::toArray(), true);
            self::$foundNameValueLink[$className][$value] = $constantName;
        }
        return self::$foundNameValueLink[$className][$value];
    }

    /**
     * Используется ли такое имя константы в перечислении
     * @param string $name
     */
    final public static function isExistName($name)
    {
        $constArray = self::toArray();
        return isset($constArray[$name]);
    }

    /**
     * Используется ли такое значение константы в перечислении
     * @param string $value
     */
    final public static function isExistValue($value)
    {
        return self::getName($value) === false ? false : true;
    }   


    final private function __clone(){}

    final private function __construct($name, $value)
    {
        $this->constName = $name;
        $this->constValue = $value;
    }

    final public function __toString()
    {
        return (string)$this->constValue;
    }
}

उपयोग:

class enumWorkType extends Enum
{
        const FULL = 0;
        const SHORT = 1;
}

2
लेकिन यह अच्छा वर्ग है और फ़ंक्शन नाम देशी है। और यह भी अनुवाद .google.ru शायद मदद करें।
आर्टबर्ग ने

2
क्रोम लोगों का उपयोग करें और इसका अनुवाद करें, यदि आप प्रोग्रामर हैं, तो आप कोड पढ़ते हैं!
मार्क

8
सामान्य तौर पर, किसी बाहरी संसाधन को जोड़ने के बजाय उत्तर के भीतर कोड को शामिल करना हमेशा बेहतर होता है, जो 'एन' महीनों / वर्षों, आदि में नहीं हो सकता है
जॉन पार्कर

मेरी कक्षा इतनी बड़ी है और मुझे लगता है कि इस पोस्ट को पढ़ना असुविधाजनक होगा।
आर्टर्ज डाइऑक्साइड

मुझे लगता है कि दो बुरी बातें यहां हैं: यह रूसी में है (प्रत्येक प्रोग्रामर को अंग्रेजी जानना चाहिए और इसका उपयोग करना चाहिए, यहां तक ​​कि टिप्पणियों में भी) और यह यहां शामिल नहीं है। मदद देखें कि विशाल कोड कैसे शामिल करें।
15:15 बजे गार्क्स
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.