Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a typedef keyword in PHP such that I can do something like:

typedef struct {

} aStructure;

or

typedef enum {
  aType1,
  aType2,
} aType;

EDIT

I eventually answered my own question below (skip the first recent answer). I created a custom enum function that accomplishes exactly what I was asking for, but without type definition.

share|improve this question
1  
possible partial duplicate of PHP and Enums – Mark Elliot Oct 1 '10 at 5:48
you're right. i checked the other thread and it addressed my "struct" portion of my question, but i wanted to be able to create enumerations like those used in iphone-sdk. below i show a function i wrote to adapt to that form of coding making the constants completely global, without having to call a specific class constant – Dick Savagewood Aug 9 '12 at 13:37

6 Answers

Nope.

You'll have to go with arrays or, if you require something that has a custom type, classes and objects.

share|improve this answer
up vote 10 down vote accepted

I actually created my own kind of enum for PHP and it works just fine for what i need to do. no typedefs but its nice :D

Function enum($array, $asBitwise = false)


    function enum($array, $asBitwise = false) {

        if(!is_array($array) or count($array) < 1)  return false;    # Error incorrect type

        $n = 0; # Counter variable
        foreach($array as $i) {
            if($i === null) {
                if($n == 0) {
                    if(!define($i, 0)) return false;
                } else
                if(!define($i, $asBitwise ? 1 << ($n - 1) : $n)) return false;
            } $n++;
        }  return true; # Successfully defined all variables

    }



Usage (EXAMPLE):



    enum(array(
        'BrowserTypeUnknown',       # 0
        'BrowserTypeIE',            # 1
        'BrowserTypeNetscape',      # 2
        'BrowserTypeOpera',         # 3
        'BrowserTypeSafari',        # 4
        'BrowserTypeFirefox',       # 5
        'BrowserTypeChrome',        # 6
    )); # BrowserType as Increment

    $browser_type = BrowserTypeChrome;

    if($browser_type == BrowserTypeOpera):
        # Make Opera Adjustments (will not execute)
    elseif($browser_type == BrowserTypeChrome):
        # Make Chrome Adjustments (will execute)
    endif;

    enum(array(
        'SearchTypeUnknown',            # 0
        'SearchTypeMostRecent',         # 1 << 0
        'SearchTypePastWeek',           # 1 << 1
        'SearchTypePastMonth',          # 1 << 2
        'SearchTypeUnanswered',         # 1 << 3
        'SearchTypeMostViews',          # 1 << 4
        'SearchTypeMostActive',         # 1 << 5
    ), true); # SearchType as BitWise

    $search_type = SearchTypeMostRecent + SearchTypeMostActive;

    if($search_type & SearchTypeMostRecent):
        # Search most recent files (will execute)
    endif;
    if($search_type & SearchTypePastWeek):
        # Search files from the past will (will not execute)
    endif;

    if($search_type & SearchTypeMostActive):
        # Search most active files AS WELL (will execute as well)
    endif;



share|improve this answer
6  
Oh boy, that's hacky, albeit clever. I don't really see the benefit though. Won't constants do the trick? You could even declare them much the same way. – deceze Oct 21 '10 at 9:19
YES i changed that to make the it do constants instead and i works like a charm! =D – Dick Savagewood Oct 23 '10 at 12:58
the enumeration allows me to add in variables after the fact into the array and not have to change the value of every other variable manually – Dick Savagewood Nov 8 '11 at 15:16

PHP has two (count them – 2) datatypes:

  1. A single scalar value stored as a piece of text which is be converted to a number or boolean in an arithmetic or logical context where possible.

  2. The second structure is a hash (not an Array!) which is keyed by scalar text. If the key is a numeric value then the hash behaves very much like an array, but if it's a text value it behaves more like a classic perl hash.

You can 'fake' an enum using an inverted hash/array structure:

   $pretend_enum = array ( 'cent' => 1, 'nickel' => 2, 'dime' => 3 );
       if ($pretend_enum[$value]) {
           $encoded = $pretend_enum[$value];
   }   else {
           echo "$value is not a valid coin";
   } 

"Structures" are usually faked by having a hash with named members:

 $ceedee = array('title' => "Making Movies", 'artist' => "Dire Straights", 'tracks' => 12);
 echo "My favourite CD is " . $ceedee['title'];
share|improve this answer
Excellent explanation. – Camilo Martin Mar 1 '11 at 18:55
14  
This is blatantly false - I think you might be mistaking PHP with Perl, though I doubt even Perl does this. First off, in PHP, associative arrays do not start with a "%". That is from Perl. Secondly, PHP has many more than two data types. If you think everything is represented as text, you're probably thinking of Tcl. PHP has eight datatypes. (php.net/manual/en/language.types.php) Furthermore, it's spelled "scalar," not "scaler," and PHP does not internally represent values such as resources or integers as text. See Learning PHP 5, by David Sklar. – Jonathan Chan Oct 12 '11 at 0:33

You can do something similar with constants, but it's not the same as a dedicated enum.

share|improve this answer

Their is an Extension called SPL_Types, but this extension is nearly at no web hosting available AND its not maintained anymore. So the best would be using classes for structs. and constants for enums. maybe with the help of the plain SPL extension, which is nearly in every php 5.X installation available, you could build some "evil dirty enum hack"

share|improve this answer

Here is a github library for handling type-safe enumerations in php:

This library handle classes generation, classes caching and it implements the Type Safe Enumeration design pattern, with several helper methods for dealing with enums, like retrieving an ordinal for enums sorting, or retrieving a binary value, for enums combinations.

The generated code use a plain old php template file, which is also configurable, so you can provide your own template.

It is full test covered with phpunit.

php-enums on github (feel free to fork)

Usage: (@see usage.php, or unit tests for more details)

<?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";
}

Output:

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
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.