rfc:php8:merge_symbol_tables
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
rfc:php8:merge_symbol_tables [2017/09/22 13:28] – external edit 127.0.0.1 | rfc:php8:merge_symbol_tables [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 7: | Line 7: | ||
===== Introduction ===== | ===== Introduction ===== | ||
- | Currently | + | Currently |
- | + | ||
- | For example, this class has '' | + | |
<PHP> | <PHP> | ||
- | class Foo { | + | const Symbol |
- | | + | function |
- | | + | class Symbol {} |
- | public static | + | // no errors |
- | | + | |
- | | + | |
- | } | + | |
</ | </ | ||
- | In order to disambiguate between them we have different syntax: | + | This behavior is sometimes useful but prohibits other, more useful features such as the ability |
<PHP> | <PHP> | ||
- | var_dump(Foo::bar); | + | // this looks for constant strlen, not function strlen: |
- | var_dump(Foo::$bar); | + | array_map(strlen, [' |
- | var_dump(Foo::bar()); | + | |
+ | // must use the string: | ||
+ | array_map(' | ||
</ | </ | ||
- | However, in certain cases this causes issues. How do you access a constant dynamically? | + | This makes it difficult to rename functions |
- | + | ||
- | Another common problem | + | |
- | + | ||
- | This RFC will unify the tables, which allows the logical syntax to be reused without introducing ambiguity. | + | |
===== Proposal ===== | ===== Proposal ===== | ||
- | All class constants, properties and methods will logically share the same symbol table. | + | This RFC proposes to unify the constant, |
===== Benefits ===== | ===== Benefits ===== | ||
Line 42: | Line 35: | ||
===== Backward Incompatible Changes ===== | ===== Backward Incompatible Changes ===== | ||
- | Any file that contains a class with methods, constants or properties that share the same identifier | + | Any projects currently using the same name for different kinds of symbols |
===== Proposed PHP Version(s) ===== | ===== Proposed PHP Version(s) ===== | ||
- | This RFC targets PHP 8.0 because of the backwards compatibility | + | This RFC targets PHP 8.0 or PHP 9.0 because of the backwards compatibility |
===== RFC Impact ===== | ===== RFC Impact ===== | ||
==== To Existing Extensions ==== | ==== To Existing Extensions ==== | ||
- | Extensions may declare constants, properties or methods that share the same name. In some cases it is possible to prevent this from happening, but since objects are free to implement custom handlers it cannot be guaranteed. If extensions use such properties, constants or methods then at runtime they are invoking undefined behavior. | + | TODO |
==== To Opcache ==== | ==== To Opcache ==== | ||
Line 55: | Line 48: | ||
===== Open Issues ===== | ===== Open Issues ===== | ||
- | Constants are currently case sensitive while methods | + | Constants are currently case sensitive while functions |
===== Future Scope ===== | ===== Future Scope ===== |
rfc/php8/merge_symbol_tables.1506086901.txt.gz · Last modified: 2025/04/03 13:08 (external edit)