PHP code example of phpextra / enum
1. Go to this page and download the library: Download phpextra/enum library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phpextra / enum example snippets
class TheGuy extends Enum
{
const _default = self::NICE_GUY;
const SMART_GUY = 'Mike';
const NICE_GUY = 'Rick';
}
$guy = new TheGuy();
echo $guy->getValue(); // returns Rick
$mike = new TheGuy(TheGuy::MIKE);
echo $mike->getValue(); // returns Mike
echo $guy->isEqual($mike); // returns false