phpc.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A server for PHP programmers & friends. Join us for discussions on the PHP programming language, frameworks, packages, tools, open source, tech, life, and more.

Administered by:

Server stats:

798
active users

If anyone is happy if local scope constants could be defined in PHP, please tell me how happy you would be. I myself am not convinced of its usefulness enough to strongly argue its merits in the RFC process, just that I would use it if it were available.

Larry Garfield

@sji We already have private class constants. That seems adequate for any reasonable use case.

@Crell @sji

I easily see folks using them by default as a way to prevent redefining variables.

Then they'll want to add type declarations, another RFC.

People who hate `$` will also start to favor them so the next RFC will be to allow input arguments as constants.

Then add in 'shadowing', another RFC.

It will create a mix of inconsistent syntax and knock-on effects.

They're a form of state, with no way for child classes to use or override them.

@zimzat @Crell Thanks for helping me think about it. That foresight will probably be real.

I myself tend to use relatively short-lived variables that don't be re-assigned, and TBH never experience problems with local variables having state. And as Crell says, private class constants are enough for actually constant values.

Though I think that write-once variables can be a way to reduce cognitive load, I'm still not convinced that it would be worth the added complexity of the language.