Ich möchte eine Klasseneigenschaft haben, die es ermöglicht, einen Ausdruck auf der rechten Seite des Gleichheitszeichens zu platzieren. Alle PHP-Versionen ersticken an dem folgenden Code, aber er ist so geschrieben, damit er in Zukunft leichter erweiterbar ist.
/* Example SDK Class */
class SDK
{
/* Runtime Option Flags */
// Strings
# 0: Makes no change to the strings.
var $STRING_NONE = (1 << 0);
# 1: Removes color codes from the string.
var $STRING_STRIP_COLOR = (1 << 1);
# 2: Removes language codes from the string.
var $STRING_STRIP_LANG = (1 << 2);
# 3: Removes all formatting from the string.
var $STRING_STRIP = SELF::STRING_STRIP_COLOR & SELF::STRING_STRIP_LANG;
# 4: Converts color codes to HTML & UTF-8.
var $STRING_HTML = (1 << 3);
# 8: Converts color codes to ECMA-48 escape color codes & UTF-8.
var $STRING_CONSOLE = (1 << 4);
# 16: Changes player names only.
var $STRING_NAMES = (1 << 5);
# 32: Changes host names only.
var $STRING_HOSTS = (1 << 6);
function SDK($fString = SELF::STRING_HTML & SELF::STRING_NAMES & SELF_HOST)
{
// constructor code.
}
}
$SDK &= new SDK(SDK::STRING_NONE);
(1 << 0)
scheint mir eine sehr einfache Syntax zu sein, und es ist nicht nachvollziehbar, warum PHP so etwas nicht zulassen würde. Fällt jemandem eine Lösung ein, die die Lesbarkeit und zukünftige Erweiterbarkeit des folgenden Codes beibehält?