Sebastian Bergmann schrieb:
Sebastian Schneider schrieb:
public static final $bar = "foobar's world";

 We have the const keyword for that.


But doesn't work with arrays, e.g.

public class Result {
    const DECISION_PERMIT               = 0;
    const DECISION_DENY                 = 1;
    const DECISION_INDETERMINATE        = 2;
    const DECISION_NOT_APPLICABLE       = 3;

const DECISIONS = array( 'Permit', 'Deny', 'Indeterminate', NotApplicable' );

  //....

}

thus you need to work around with private/protected statics, which
seems to be incoherent to me.

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to